f_op_actor OK

This commit is contained in:
LagoLunatic
2023-10-08 19:47:10 -04:00
parent 58de079efd
commit 4bd49693ae
4 changed files with 40 additions and 4 deletions
+7 -1
View File
@@ -8,7 +8,13 @@
class J3DLightInfo {
public:
void operator=(J3DLightInfo const&);
void operator=(J3DLightInfo const& other) {
mLightPosition = other.mLightPosition;
mLightDirection = other.mLightDirection;
mColor = other.mColor;
mCosAtten = other.mCosAtten;
mDistAtten = other.mDistAtten;
}
/* 0x00 */ Vec mLightPosition;
/* 0x0C */ Vec mLightDirection;