mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
@rextimmy fix for GuiWindowCtrl so they snap correctly again
Added asset loose files for editor and bake level files on level asset Correct return of ConsoleGetType on TypeShapeAssetPtr Adds shape asset support to TSStatic, now will support either raw shape file or ShapeAsset Adds onInspect function behavior, so when object is inspected, it can do special editor behavior Adds callback for when editTSCtrl is resized Added editor setting to force the world editor sidebar(scene tree and inspector windows) to resize to fit to the right side of the screen automatically instead of float If assimp loader encounters error, it's output into the console log Makes root Data item in folder hierarchy tree in Asset Browser able to support right mouse popup menu action Material and Shape assets now correctly base on current browsed folder Material asset generation now more properly fills out common maps, as well as handles skipped dependencies better More theme corrections Updated TestGrid images asset defs to have proper loose file handling
This commit is contained in:
parent
7ff451ec89
commit
7b5e1c3c58
35 changed files with 619 additions and 295 deletions
|
|
@ -589,6 +589,8 @@ void GuiInspector::refresh()
|
|||
mGroups.push_back(general);
|
||||
addObject(general);
|
||||
|
||||
mTargets.first()->onInspect(this);
|
||||
|
||||
//Entity inspector group
|
||||
if (mTargets.first()->getClassRep()->isSubclassOf("Entity"))
|
||||
{
|
||||
|
|
@ -669,7 +671,7 @@ void GuiInspector::refresh()
|
|||
#endif
|
||||
|
||||
// The group ended up having no fields. Remove it.
|
||||
newGroup->deleteObject();
|
||||
newGroup->deleteObject();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -106,6 +106,11 @@ public:
|
|||
/// @note Only valid in single-object mode.
|
||||
void setName( StringTableEntry newName );
|
||||
|
||||
void addInspectorGroup(GuiInspectorGroup* group)
|
||||
{
|
||||
mGroups.push_back(group);
|
||||
}
|
||||
|
||||
/// Deletes all GuiInspectorGroups
|
||||
void clearGroups();
|
||||
|
||||
|
|
@ -163,4 +168,4 @@ protected:
|
|||
void refresh();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue