Final trueSpace7.61 Beta 8 Std Unofficial Update

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

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

@Clinton
HideAll script?

Option1
Make a new HideAll script that selects all objects in the scene and run the Hide script, then Unselect


Option2
Use the Guard script for the D3DView.ShowRenderAttribsForObject('', curNode) command in the HideAll script
User avatar
clintonman
Captain
Posts: 5428
Joined: 21 May 2009, 21:08
Type the number ten into the box: 0
Location: California
Contact:

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by clintonman »

Just now saw your curves post. I'll get back to you later...
Clinton Reese

http://clintons3d.com
User avatar
clintonman
Captain
Posts: 5428
Joined: 21 May 2009, 21:08
Type the number ten into the box: 0
Location: California
Contact:

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by clintonman »

A fix for HideAll

Problem was a combination of D3DView.ShowRenderAttribsForObject and GatherChildORAs being run on NURBS objects.

"Is there a reason why you are switching to Setting in the Stack with the HideAll & ShowAll scripts?"

Don't know what you mean and I don't remember making any changes to stack or switching stacks. If something looks wrong remove it and test it. If it still works when it's gone then it's not needed and should be removed.
Attachments
HideAll.RsObj
(10.62 KiB) Downloaded 91 times
Clinton Reese

http://clintons3d.com
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

HideAll & ShowAll both have commands that switches to the Stack/Setting
HT_PREFERENCES = 5
RsStackView.SwitchStackViewAspect(HT_PREFERENCES);
So... I would like to remove these two commands

Show & ShowAll runs Fix NURBS ORA even if the NURBS needs fixing or Not!
Not sure what the results would be if a user selected UnDo
So... I would like to add RsApp.ClearHistory() at the end of the following two scripts
NURBSUtilities/fixRenderAttributes
Commands/Fix NURBS ORA


Everytime you click in a 3D View WHEN a NURBS is selected, the following script runs:
NURBSUtilities/NURBStoCPMeshSelection

I notice that the Undo History no longer WORKS!!!
So... I would like to add RsApp.ClearHistory() at the end of the above script
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

Update 95 for trueSpace7.61 Beta 8 Standalone Unofficial Update Version 8
Updated

preobjects/
ObjectAttributes

Commands/ [Author - Clinton Reese]
HideAll
Show Object Attribs
Fix NURBS ORA - Add RsApp.ClearHistory()

CustomCommands/NURBSScripts/NURBSUtilities/
fixRenderAttributes - Add RsApp.ClearHistory()
Show NURBS Panel With CP Mesh - Add RsApp.ClearHistory()

November 11, 2021

https://united3dartists.com/forum/viewt ... =55&t=3731

Instructions:

Recommend that you completely Uninstall and Install trueSpace7.61 Standalone to a clean directory

1.) Run the tS7.61B8Std.8.exe
2.) Browse [...] to where you installed C:\trueSpace761Std, select its folder and then the Extract button
3.) Select the Yes to All button
4.) Open trueSpace and select the Reset to Default Context icon
5.) In Workspace select the Default layout tab

The included Plugins.xml file has the Clintons3dPlugin, Clintons3dPluginExt and Clintons3dRsView, Installed and Loaded to the default path: C:\trueSpace761Std
WARNING: These 3 plugins are required to be Installed and Loaded when using trueSpace!
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

Update 96 for trueSpace7.61 Beta 8 Standalone Unofficial Update Version 8
Updated

Toolbars/
Link Editor Navigator
Link Editor Navigator.png
Ctrl+ icon
Fixed the RMB = Unselect command

November 17, 2021

https://united3dartists.com/forum/viewt ... =55&t=3731

Instructions:

Recommend that you completely Uninstall and Install trueSpace7.61 Standalone to a clean directory

1.) Run the tS7.61B8Std.8.exe
2.) Browse [...] to where you installed C:\trueSpace761Std, select its folder and then the Extract button
3.) Select the Yes to All button
4.) Open trueSpace and select the Reset to Default Context icon
5.) In Workspace select the Default layout tab

The included Plugins.xml file has the Clintons3dPlugin, Clintons3dPluginExt and Clintons3dRsView, Installed and Loaded to the default path: C:\trueSpace761Std
WARNING: These 3 plugins are required to be Installed and Loaded when using trueSpace!
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

@Clinton
Found a solution for not having to select the Main View before using the toolbars' switch to Perspective View that works with floating windows too! :superbanana:

Code: Select all

if(Node.SubObjectCount("/D3DView")==0) return;
if(Node.SubObjectCount("/D3DView")>>1){D3DView.SwitchEyeCameraType('', '0');}
if(Node.SubObjectCount("/D3DView")==1){D3DView.SwitchEyeCameraType('{2C152F81-45A2-4035-8896-9E49D60C8A7A}', '0');}
This can be used with the other views, grid, and scene ORA commands as well
User avatar
clintonman
Captain
Posts: 5428
Joined: 21 May 2009, 21:08
Type the number ten into the box: 0
Location: California
Contact:

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by clintonman »

trueBlue wrote: 22 Nov 2021, 20:29 @Clinton
Found a solution for not having to select the Main View before using the toolbars' switch to Perspective View that works with floating windows too! :superbanana:

Code: Select all

if(Node.SubObjectCount("/D3DView")==0) return;
if(Node.SubObjectCount("/D3DView")>>1){D3DView.SwitchEyeCameraType('', '0');}
if(Node.SubObjectCount("/D3DView")==1){D3DView.SwitchEyeCameraType('{2C152F81-45A2-4035-8896-9E49D60C8A7A}', '0');}
This can be used with the other views, grid, and scene ORA commands as well
I look forward to testing it.
Clinton Reese

http://clintons3d.com
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

It is only slightly better than the top small toolbar
If there is no floating 3D Windows open, then it works in the main window without needing focus
Otherwise, it needs to have focus
Same for the floating 3D Windows, they need to have focus
User avatar
trueBlue
Captain
Posts: 5214
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace7.61 Beta 8 Std Unofficial Update

Post by trueBlue »

Update 97 for trueSpace7.61 Beta 8 Standalone Unofficial Update Version 8
Updated

Show.xml
Hide.xml
Show Object Attribs.xml
ShowCameraAndLights.xml
HideCameraAndLights.xml
Add fix for Model lights for all of the above

UnLookAt.xml
Add Disconnects before Connecting

LoolAt icon(s)

LMB = if(Node.ConExists(Node.FirstSelected(), "Target Matrix")){System.Alert("Object is being used to Look At another object\n\nUse the Unlook At tool first");return;}else{ToolMng.ActivateTool('{17D544A3-3F58-436B-83E7-F8B4D7D4E7C5}','{4E203C6C-A20D-4e32-82B4-FC482F5A0D06}');}
RMB = RsTool.Arrow()

Link Editor Navigator
Ctrl+ icon - RMB = RsTool.Arrow()
Removed - H icon "Hide unselected"
Add
U icon
LMB = Unselect
RMB = Unselect and Close Panels

WinGUID_Bar
Updated LMB & RMB commands to use UUFunctionSet


Infinite lights
Add
Enable Shadow On & Off buttons for VRay only
Rename DirlightShader
Add the modifications to New Scene, Lights, and WS - Default.RsSLgts

Desktop
Display Toolbars button
Updated LMB command to use UUFunctionSet

Widgets
Add
UUFunctionSet
Commands for all floating toolbars, Scene ORA modes, Grid modes, Switch Views, Reset View, Look at Selection, and Zoom to Selection
All toolbar buttons updated to use the UUFunctionSet
These new commands will run without the Main 3D Window needing focus unless there is a floating 3D Window that has focus
Add a Hide unselected icon to Workspace toolbars

November 28, 2021

https://united3dartists.com/forum/viewt ... =55&t=3731

Instructions:

Recommend that you completely Uninstall and Install trueSpace7.61 Standalone to a clean directory

1.) Run the tS7.61B8Std.8.exe
2.) Browse [...] to where you installed C:\trueSpace761Std, select its folder and then the Extract button
3.) Select the Yes to All button
4.) Open trueSpace and select the Reset to Default Context icon
5.) In Workspace select the Default layout tab

The included Plugins.xml file has the Clintons3dPlugin, Clintons3dPluginExt and Clintons3dRsView, Installed and Loaded to the default path: C:\trueSpace761Std
WARNING: These 3 plugins are required to be Installed and Loaded when using trueSpace!
Post Reply