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:
AzaezelX 2023-01-27 01:13:15 -06:00
parent a0bbe0ec18
commit f5a34308f9
382 changed files with 588 additions and 130 deletions

View file

@ -107,6 +107,7 @@ CppAsset::~CppAsset()
void CppAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -111,6 +111,7 @@ CubemapAsset::~CubemapAsset()
void CubemapAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -104,6 +104,7 @@ ExampleAsset::~ExampleAsset()
void ExampleAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -95,6 +95,7 @@ GUIAsset::~GUIAsset()
void GUIAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -109,6 +109,7 @@ GameObjectAsset::~GameObjectAsset()
void GameObjectAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -155,6 +155,7 @@ void ImageAsset::consoleInit()
void ImageAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -111,6 +111,7 @@ LevelAsset::~LevelAsset()
void LevelAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -150,6 +150,7 @@ void MaterialAsset::consoleInit()
void MaterialAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -106,6 +106,7 @@ ParticleAsset::~ParticleAsset()
void ParticleAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -111,6 +111,7 @@ PostEffectAsset::~PostEffectAsset()
void PostEffectAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -105,6 +105,7 @@ ScriptAsset::~ScriptAsset()
void ScriptAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -112,6 +112,7 @@ ShapeAnimationAsset::~ShapeAnimationAsset()
void ShapeAnimationAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -165,6 +165,7 @@ void ShapeAsset::consoleInit()
void ShapeAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -147,6 +147,7 @@ SoundAsset::~SoundAsset()
void SoundAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -134,6 +134,7 @@ TerrainAsset::~TerrainAsset()
void TerrainAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -153,6 +153,7 @@ void TerrainMaterialAsset::consoleInit()
void TerrainMaterialAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();

View file

@ -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");

View file

@ -106,6 +106,7 @@ StateMachineAsset::~StateMachineAsset()
void StateMachineAsset::initPersistFields()
{
docsURL;
// Call parent.
Parent::initPersistFields();