MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / getCanSave

Method getCanSave

Engine/source/console/simObject.h:910–910  ·  view source on GitHub ↗

Returns boolean specifying if the object can be serialized.

Source from the content-addressed store, hash-verified

908
909 /// Returns boolean specifying if the object can be serialized.
910 bool getCanSave() const { return !mFlags.test( CannotSave ); }
911
912 /// Set serialization flag.
913 virtual void setCanSave( bool val ) { if( !val ) mFlags.set( CannotSave ); else mFlags.clear( CannotSave ); }

Callers 4

_getCanSaveMethod · 0.80
simObject.cppFile · 0.80
writeMethod · 0.80
getCanSaveParentMethod · 0.80

Calls 1

testMethod · 0.45

Tested by

no test coverage detected