mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
Removed unnecessary parameter in a simObject getter method
This commit is contained in:
parent
938e28b6f3
commit
9fbdf64bd9
|
|
@ -781,7 +781,7 @@ class SimObject: public ConsoleObject
|
|||
void setCanSaveDynamicFields( bool bCanSave ) { mCanSaveFieldDictionary = bCanSave; }
|
||||
|
||||
/// Get whether fields created at runtime should be saved. Default is true.
|
||||
bool getCanSaveDynamicFields( bool bCanSave ) { return mCanSaveFieldDictionary;}
|
||||
bool getCanSaveDynamicFields( ) { return mCanSaveFieldDictionary;}
|
||||
|
||||
/// Return the object that this object is copying fields from.
|
||||
SimObject* getCopySource() const { return mCopySource; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue