Merge pull request #1024 from Azaezel/alpha41/TypeHints

add TypeHints for scenetree viewing
This commit is contained in:
Brian Roberts 2023-06-02 10:46:33 -05:00 committed by GitHub
commit 06e4ce01a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 50 additions and 1 deletions

View file

@ -549,6 +549,9 @@ class SimObject: public ConsoleObject, public TamlCallbacks
/// Get the internal name of this control
StringTableEntry getInternalName() const { return mInternalName; }
/// type-specified slot for returning hints for the main difference between object instances
virtual StringTableEntry getTypeHint() const { return StringTable->EmptyString(); }
/// Set the original name of this control
void setOriginalName(const char* originalName);