Final trueSpace7.61 Beta 8 Std Unofficial Update

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 »

Static Sweep Plus command uses script buffer technique for a 1 step undo

The target weld reduces the number of undos by half, by using function set to hold data, update to use the newer status line and a small section uses the script buffer. It still eats undos but at a lower rate than before. about 18 undos before, down to around 6 or 7

Color Picker in the spotlight uses the plugin un-doable commands. It takes about 2 undos to set the color back. This was tricky because the bitmap control was adding an undo to the history. The key was to immediately undo inside the color code to clear out the mystery undo. I'm not 100% sure this works, but it's a big improvement , 2 undos vs something like 15 undos or a crazy number of undos if dragging in the control.
Attachments
Spotlight3_06.RsObj
(627.39 KiB) Downloaded 105 times
vertexTargetWeld08.RsObj
(36.77 KiB) Downloaded 105 times
staticSweepPlusScript.RsObj
(13.14 KiB) Downloaded 107 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 »

The Spot light Color Picker's Red, Green, Blue Enter button does not work
The Lum is being changed and makes the Color Picker not work right unless you change Lum to 1.000
Color Picker Lum.png
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 »

Red, Green, Blue Enter fixed. This was an oopsy. I deactivated it while trying to figure it out and forgot to reactivate it.
Attachments
Spotlight3_07.RsObj
(627.7 KiB) Downloaded 115 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 »

Test Update 46 for trueSpace7.61 Beta 8 Std Unofficial Update

May 19, 2021

Recommend that you completely Uninstall and Install trueSpace7.61 Beta 8 Standalone to a clean directory before installing this update. If you applied the previous Test Update to a clean directory, you do not need to Uninstall trueSpace7.61 Beta 8 Standalone before applying this new update.
This is a Beta Pre Release for TESTING the below updates and the included previous updates

Update

Plugins.xml
Clintons3dPlugin v.1638428
Clintons3dRsView v.1638406

Commands
Copy Window

preobjects
Quad Frame Window

CustomCommands Author Clinton Reese
Mesh Object Coordinate System
Static Sweep Plus
Vertex Target Weld
Web Server
Workspace Layers 4

Toolbars
File/New Scene
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 »

GridArrayPanel.jpg

Grid Array that does not need to clear undo history
Rearranged the UI a little bit, smaller, "Replace Array Element" button moved and has some separation
Opens in a floating window
Prevents choosing the array itself as the replacement element
Attachments
gridArray2Script47.RsObj
(118.74 KiB) Downloaded 112 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 »

Grid Array

Code: Select all

ERR   Source object: /Scripts/CustomCommands/gridArray2Script/doGrid Error: Microsoft JScript runtime error Description: 'util' is undefined Error code: 0x800a1391 - (null) Line: 154, Char: 1 Script text:  util.SetNodeValueMatrix(node, conn,     0x80020101
doGrid script
var util = System.CreateDO("Clintons3D Package/Utility functions");
Removing var stops the error
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: 20 May 2021, 22:14 Grid Array

Code: Select all

ERR   Source object: /Scripts/CustomCommands/gridArray2Script/doGrid Error: Microsoft JScript runtime error Description: 'util' is undefined Error code: 0x800a1391 - (null) Line: 154, Char: 1 Script text:  util.SetNodeValueMatrix(node, conn,     0x80020101
doGrid script
var util = System.CreateDO("Clintons3D Package/Utility functions");
Removing var stops the error
Yep, I see. I'll have to remember to exit out of truespace before running the final test.
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 »

Seems like you could use your plugin commands in more areas
Like opening the floating panel

Code: Select all

	util.SetNodeValueString(rpf, "RootNode", Space.CurrentScene());
	util.SetNodeValueString(rpf + "/Panel Node", "PanelEditorNode", thegrid2 + "/Grid Array Control");
	util.Copy(rpf, "/Project/Windows Manager Space");
There is other areas too but I am not sure if you want to or not
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 »

RadialArrayPanel.jpg
Radial Array without clearing history
rearranged the panel a bit
Opens in floating window - Took your advice and used the util commands
Attachments
radialArray2Script21.RsObj
(129.16 KiB) Downloaded 101 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 »

clintonman wrote: 21 May 2021, 00:21 RadialArrayPanel.jpg

Radial Array without clearing history
rearranged the panel a bit
Opens in floating window - Took your advice and used the util commands
Seems to be working
Question?
You are using:
SetNodeValueMatrix(thegrid,"Matrix", workMatrix2);
in a few places

Shouldn't this be?
util.SetNodeValueMatrix(thegrid,"Matrix", workMatrix2);
Post Reply