mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 08:15:44 +00:00
rest of virtuals removed
virtuals removed and replaced with override where necessary on the rest of the code base, clang-tidy to the rescue.
This commit is contained in:
parent
efbe5e90f5
commit
2b295fb7f0
454 changed files with 4162 additions and 4156 deletions
|
|
@ -44,20 +44,20 @@ public:
|
|||
ColladaAppSequence(const domAnimation_clip* clip);
|
||||
~ColladaAppSequence();
|
||||
|
||||
void setActive(bool active);
|
||||
void setActive(bool active) override;
|
||||
|
||||
const domAnimation_clip* getClip() const { return pClip; }
|
||||
|
||||
S32 getNumTriggers();
|
||||
void getTrigger(S32 index, TSShape::Trigger& trigger);
|
||||
|
||||
const char* getName() const;
|
||||
const char* getName() const override;
|
||||
|
||||
F32 getStart() const { return seqStart; }
|
||||
F32 getEnd() const { return seqEnd; }
|
||||
F32 getStart() const override { return seqStart; }
|
||||
F32 getEnd() const override { return seqEnd; }
|
||||
void setEnd(F32 end) { seqEnd = end; }
|
||||
|
||||
U32 getFlags() const;
|
||||
U32 getFlags() const override;
|
||||
F32 getPriority();
|
||||
F32 getBlendRefTime();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue