mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Merge pull request #614 from lukaspj/UnnecessaryParamter
Removed unnecessary parameter in a simObject getter method
This commit is contained in:
commit
66a73708ec
1 changed files with 1 additions and 1 deletions
|
|
@ -781,7 +781,7 @@ class SimObject: public ConsoleObject
|
||||||
void setCanSaveDynamicFields( bool bCanSave ) { mCanSaveFieldDictionary = bCanSave; }
|
void setCanSaveDynamicFields( bool bCanSave ) { mCanSaveFieldDictionary = bCanSave; }
|
||||||
|
|
||||||
/// Get whether fields created at runtime should be saved. Default is true.
|
/// 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.
|
/// Return the object that this object is copying fields from.
|
||||||
SimObject* getCopySource() const { return mCopySource; }
|
SimObject* getCopySource() const { return mCopySource; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue