mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 07:04:36 +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
|
|
@ -107,6 +107,7 @@ CppAsset::~CppAsset()
|
|||
|
||||
void CppAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ CubemapAsset::~CubemapAsset()
|
|||
|
||||
void CubemapAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -104,6 +104,7 @@ ExampleAsset::~ExampleAsset()
|
|||
|
||||
void ExampleAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ GUIAsset::~GUIAsset()
|
|||
|
||||
void GUIAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@ GameObjectAsset::~GameObjectAsset()
|
|||
|
||||
void GameObjectAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -155,6 +155,7 @@ void ImageAsset::consoleInit()
|
|||
|
||||
void ImageAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ LevelAsset::~LevelAsset()
|
|||
|
||||
void LevelAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -150,6 +150,7 @@ void MaterialAsset::consoleInit()
|
|||
|
||||
void MaterialAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -106,6 +106,7 @@ ParticleAsset::~ParticleAsset()
|
|||
|
||||
void ParticleAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ PostEffectAsset::~PostEffectAsset()
|
|||
|
||||
void PostEffectAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -105,6 +105,7 @@ ScriptAsset::~ScriptAsset()
|
|||
|
||||
void ScriptAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -112,6 +112,7 @@ ShapeAnimationAsset::~ShapeAnimationAsset()
|
|||
|
||||
void ShapeAnimationAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -165,6 +165,7 @@ void ShapeAsset::consoleInit()
|
|||
|
||||
void ShapeAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -147,6 +147,7 @@ SoundAsset::~SoundAsset()
|
|||
|
||||
void SoundAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ TerrainAsset::~TerrainAsset()
|
|||
|
||||
void TerrainAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@ void TerrainMaterialAsset::consoleInit()
|
|||
|
||||
void TerrainMaterialAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ void AssetImportConfig::onRemove()
|
|||
/// Engine.
|
||||
void AssetImportConfig::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
Parent::initPersistFields();
|
||||
|
||||
addGroup("General");
|
||||
|
|
@ -466,6 +467,7 @@ void AssetImportObject::onRemove()
|
|||
|
||||
void AssetImportObject::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
Parent::initPersistFields();
|
||||
|
||||
addField("assetType", TypeRealString, Offset(assetType, AssetImportObject), "What type is the importing asset");
|
||||
|
|
@ -539,6 +541,7 @@ void AssetImporter::onRemove()
|
|||
|
||||
void AssetImporter::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
Parent::initPersistFields();
|
||||
|
||||
addField("targetModuleId", TypeRealString, Offset(targetModuleId, AssetImporter), "The Id of the module the assets are to be imported into");
|
||||
|
|
|
|||
|
|
@ -106,6 +106,7 @@ StateMachineAsset::~StateMachineAsset()
|
|||
|
||||
void StateMachineAsset::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
// Call parent.
|
||||
Parent::initPersistFields();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue