mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-26 15:49:30 +00:00
add a docsURL; macro to link a given set of script config vars to git or similar storage urls via clicking on the inspector
This commit is contained in:
parent
a0bbe0ec18
commit
f5a34308f9
382 changed files with 588 additions and 130 deletions
|
|
@ -179,7 +179,9 @@ void MissionMarker::unpackUpdate(NetConnection * con, BitStream * stream)
|
|||
}
|
||||
}
|
||||
|
||||
void MissionMarker::initPersistFields() {
|
||||
void MissionMarker::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
Parent::initPersistFields();
|
||||
}
|
||||
|
||||
|
|
@ -281,6 +283,7 @@ void WayPoint::unpackUpdate(NetConnection * con, BitStream * stream)
|
|||
|
||||
void WayPoint::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
addGroup("Misc");
|
||||
addField("markerName", TypeCaseString, Offset(mName, WayPoint), "Unique name representing this waypoint");
|
||||
endGroup("Misc");
|
||||
|
|
@ -468,6 +471,7 @@ void SpawnSphere::advanceTime( F32 timeDelta )
|
|||
|
||||
void SpawnSphere::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
addGroup( "Spawn" );
|
||||
addField( "spawnClass", TypeRealString, Offset(mSpawnClass, SpawnSphere),
|
||||
"Object class to create (eg. Player, AIPlayer, Debris etc)" );
|
||||
|
|
@ -611,6 +615,7 @@ void CameraBookmark::unpackUpdate(NetConnection * con, BitStream * stream)
|
|||
|
||||
void CameraBookmark::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
//addGroup("Misc");
|
||||
//addField("name", TypeCaseString, Offset(mName, CameraBookmark));
|
||||
//endGroup("Misc");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue