Merge branch 'development' of https://github.com/GarageGames/Torque3D into memberMess

# Conflicts:
#	Engine/source/console/consoleFunctions.cpp
This commit is contained in:
Azaezel 2018-03-28 15:42:34 -05:00
commit cbce2ee805
154 changed files with 2950 additions and 705 deletions

View file

@ -132,8 +132,8 @@ struct GhostInfo;
/// // the ScopeAlways flag indicates that the object is always scoped
/// // on all active connections.
/// mNetFlags.set(ScopeAlways | Ghostable);
/// dStrcpy(message1, "Hello World 1!");
/// dStrcpy(message2, "Hello World 2!");
/// dStrcpy(message1, "Hello World 1!", bufLen);
/// dStrcpy(message2, "Hello World 2!", bufLen);
/// }
/// @endcode
///
@ -187,12 +187,12 @@ struct GhostInfo;
/// void setMessage1(const char *msg)
/// {
/// setMaskBits(Message1Mask);
/// dStrcpy(message1, msg);
/// dStrcpy(message1, msg, bufLen);
/// }
/// void setMessage2(const char *msg)
/// {
/// setMaskBits(Message2Mask);
/// dStrcpy(message2, msg);
/// dStrcpy(message2, msg, bufLen);
/// }
/// @endcode
///