Merge remote-tracking branch 'upstream/development' into ShaderConstBuffer-CleanupRefactor

This commit is contained in:
marauder2k7 2024-03-14 08:32:38 +00:00
commit 89843b541c
4 changed files with 48 additions and 9 deletions

View file

@ -18,7 +18,12 @@ void gotoWebPage(const char* address);
bool getDocsURL(void* obj, const char* array, const char* data);
const char* getDocsLink(const char* filename, U32 lineNumber);
#ifdef TORQUE_TOOLS
#define docsURL addGroup("Ungrouped");\
addProtectedField("docsURL", TypeBool, Offset(mDocsClick, ConsoleObject), &getDocsURL, &defaultProtectedGetFn, getDocsLink(__FILE__,__LINE__), AbstractClassRep::FieldFlags::FIELD_ComponentInspectors);\
endGroup("Ungrouped")
#else
#define docsURL NULL
#endif
#endif