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

Method SimObject

Engine/source/console/simObject.cpp:75–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73//-----------------------------------------------------------------------------
74
75SimObject::SimObject()
76{
77 mObjectName = NULL;
78 mOriginalName = NULL;
79 mInternalName = NULL;
80 mInheritFrom = NULL;
81 nextNameObject = nullptr;
82 nextManagerNameObject = nullptr;
83 nextIdObject = NULL;
84
85 mFilename = NULL;
86 mDeclarationLine = -1;
87
88 mId = 0;
89 mIdString[ 0 ] = '\0';
90 mGroup = 0;
91 mNameSpace = NULL;
92 mNotifyList = NULL;
93 mFlags.set( ModStaticFields | ModDynamicFields );
94
95 mProgenitorFile = StringTable->EmptyString();
96
97 mFieldDictionary = NULL;
98 mCanSaveFieldDictionary = true;
99
100 mClassName = NULL;
101 mSuperClassName = NULL;
102
103 mCopySource = NULL;
104 mPersistentId = NULL;
105 is_temp_clone = false;
106}
107
108//-----------------------------------------------------------------------------
109

Callers

nothing calls this directly

Calls 3

dSprintfFunction · 0.85
EmptyStringMethod · 0.80
setMethod · 0.45

Tested by

no test coverage detected