mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-22 00:06:34 -04:00
@@ -10,10 +10,10 @@ typedef int (*J3DNodeCallBack)(J3DNode*, int);
|
||||
class J3DNode {
|
||||
public:
|
||||
virtual void init(J3DModelData*) {}
|
||||
virtual void entryIn();
|
||||
virtual void entryIn() {}
|
||||
virtual void calcIn() {}
|
||||
virtual void calcOut() {}
|
||||
virtual u32 getType() const;
|
||||
virtual u32 getType() const { return 'NNON'; }
|
||||
virtual ~J3DNode();
|
||||
|
||||
J3DNode();
|
||||
|
||||
@@ -42,6 +42,7 @@ public:
|
||||
virtual void change();
|
||||
|
||||
J3DMaterial* getNext() const { return mNext; }
|
||||
void setNext(J3DMaterial* material) {mNext = material; }
|
||||
J3DShape* getShape() const { return mShape; }
|
||||
u32 getMaterialMode() { return mMaterialMode; }
|
||||
void setMaterialMode(u32 mode) { mMaterialMode = mode; }
|
||||
|
||||
Reference in New Issue
Block a user