trueSpace7.61 - Animation view/Aspect (Bug)

Post Reply
User avatar
trueBlue
Captain
Posts: 5206
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

trueSpace7.61 - Animation view/Aspect (Bug)

Post by trueBlue »

If you click on the Orange triangle once or twice in the Animation view, you will lose the ability to switch to 2D and or 3D.
Bug.PNG
Bug.PNG (9.04 KiB) Viewed 2290 times
Workaround:
Select a layout from the top Tabs.

Found a solution also from script.

Code: Select all

var scene = Space.CurrentScene();
WindowsManager.SetWindowRoot('/Project/Windows Manager Space/Frame Window/Border Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1', scene);
if (Node.Exists('/Project/Windows Manager Space/Frame Window/Border Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1'))
{
WindowsManager.SetWindowAspect('/Project/Windows Manager Space/Frame Window/Border Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1', 5);
}
Does not work in all layouts as it is path dependent
Post Reply