mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 20:35:35 +00:00
Merge branch 'development' of https://github.com/TorqueGameEngines/Torque3D into alpha41/cmake_adjustments
This commit is contained in:
commit
52093cbde5
25 changed files with 530 additions and 266 deletions
|
|
@ -738,7 +738,7 @@ DefineEngineFunction( strrepeat, const char*, ( const char* str, S32 numTimes, c
|
|||
{
|
||||
StringBuilder result;
|
||||
bool isFirst = false;
|
||||
for( U32 i = 0; i < numTimes; ++ i )
|
||||
for( S32 i = 0; i < numTimes; ++ i )
|
||||
{
|
||||
if( !isFirst )
|
||||
result.append( delimiter );
|
||||
|
|
|
|||
|
|
@ -549,6 +549,9 @@ class SimObject: public ConsoleObject, public TamlCallbacks
|
|||
/// Get the internal name of this control
|
||||
StringTableEntry getInternalName() const { return mInternalName; }
|
||||
|
||||
/// type-specified slot for returning hints for the main difference between object instances
|
||||
virtual StringTableEntry getTypeHint() const { return StringTable->EmptyString(); }
|
||||
|
||||
/// Set the original name of this control
|
||||
void setOriginalName(const char* originalName);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue