Final trueSpace 7.61 Beta 8 Unofficial Update

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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Test Update 49 for trueSpace7.61 Beta 8 Unofficial Update

May 23, 2021

Recommend that you completely Uninstall and Install trueSpace7.61 Beta 8 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 before applying this new update.

This is a Beta Pre Release for TESTING the below updates and the updates in the Final trueSpace7.61 Beta 8 Std Unofficial Update thread
viewtopic.php?f=4&t=5418

Update

Commands
Delete.xml

CustomCommands
LEtools

Constraint Scripts/OpenPanel
Update
Line 44 & 124
var maxStandardPanelWidth = 192

Toolbars
All of the below icons no longer clear the history
Record Toolbar
jScript Macro Record Toolbar
VB Macro Record Toolbar
3D Window/RMB Command
User avatar
trueBlue
Captain
Posts: 5206
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Test Update 50 for trueSpace7.61 Beta 8 Unofficial Update

May 24, 2021

Recommend that you completely Uninstall and Install trueSpace7.61 Beta 8 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 before applying this new update.

This is a Beta Pre Release for TESTING the below updates and the updates in the Final trueSpace7.61 Beta 8 Std Unofficial Update thread
viewtopic.php?f=4&t=5418

Update

Rs Main Libraries/Objects - tS7.61 Update objects
tS761 Toolbars 'Does not clear the history & use util.Commands'
Animation Panel 'Does not clear the history & use util.Commands'
Scene Animator 'Does not clear the history & use util.Commands'


Toolbars
Red toolbar icon LMB command
Blue toolbar icon LMB command
Clintons toolbar icon LMB command
Updated 'Use util.Rename'

Widgets/Tools
Shear 'Does not clear the history & use util.Commands'

CustomCommands
NormalsScripts - Author Clinton Reese
User avatar
trueBlue
Captain
Posts: 5206
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 52 for trueSpace7.61 Beta 8 Unofficial Update

May 28, 2021

viewtopic.php?f=55&t=3732

Update

Window.Shortcuts.xml
Shift + L opens Workspace Layers 4
Note: A 3D Window must be active

Commands
C3DRestore
Add
RsApp.ClearHistory()

CustomCommands
WebServer
StartWebServer
Changed Node.Rename() to Clintons3D Package/Utility functions command
Add
Set WebServerFrame
Uses Clintons3D Package/Utility functions commands

wsLayersGroup4
loadIt
Changed Node.Copy() to Clintons3D Package/Utility functions command

workspacelayers4
Modified all script(s) commands to Clintons3D Package/Utility functions commands

Common Function Set
Modified commands to Clintons3D Package/Utility functions commands
User avatar
trueBlue
Captain
Posts: 5206
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 53 for trueSpace7.61 Beta 8 Unofficial Update

May 29, 2021

viewtopic.php?f=55&t=3732

Update

Workspace Layers 4 and Web Server updates from Author Clinton Reese 5/28/2021
Updated to use Clintons3D Package/Utility functions commands

CustomCommands
WebServer
StartWebServer
Add

Code: Select all

//File/New Scene command closes the WebServerFrame and Workspace Layers 4 panel
util = System.CreateDO("Clintons3D Package/Utility functions")
util.Rename(windowFrame, "WebServerFrame")
wsLayersGroup4
OpenLayersPanel
Add

Code: Select all

//	if(!Node.Exists("/Scripts/CustomCommands/wsLayersGroup4/LayersPanel")) return;
if(!Node.Exists("/Scripts/CustomCommands/wsLayersGroup4/LayersPanelFrame")) {
	System.Alert("Workspace Layers 4 is not Installed");
	params.SetTerminationFlag()
	return;
}
//Stop if already open
if(Node.Exists("Project/Windows Manager Space/LayersPanelFrame")) {
	params.SetTerminationFlag()
	return;
}
//Stop if already open
if(!Node.Exists("/Project/Windows Manager Space/WebServerFrame")) {
	params.SetTerminationFlag()
	return;
}
loadIt
Add

Code: Select all

//	Activity.Run("Scripts/CustomCommands/WebServer/StartWebServer");
ScriptObject.Execute("Scripts/CustomCommands/WebServer/StartWebServer");
//Must run both because the above will not run the linked Set WebServerFrame script
ScriptObject.Execute("Scripts/CustomCommands/WebServer/Set WebServerFrame");
//Stop loading Workspace Layers 4 if the Mongoose Web Server is already opened
if(!Node.Exists("Project/Windows Manager Space/WebServerFrame")) {
	params.SetTerminationFlag();
	return;
}
This fixes the following error if you run Workspace Layers 4 and it is already opened
SecurityError.png
SecurityError.png (3.99 KiB) Viewed 3465 times
This only seems to effect Workspace Layers 4 and not the Color Picker or Scene View

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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 54 for trueSpace7.61 Beta 8 Unofficial Update

May 31, 2021

viewtopic.php?f=55&t=3732

Update

Commands
Clintons3dPlugin.xml & init.js 'Add check for plugin'
The Clintons3dPlugin script runs every time trueSpace starts up if the Clintons3dPlugin is not Loaded or Installed
You will get an Alert to Install the Clintons3dPlugin.rsx plugin and the Package Manager will open

Toolbars
ClintonToolbar
PEButton LMB command 'Add util.Rename() & check for plugin'
NTBButton LMB command 'Add util.Rename() & check for plugin'
ITButton LMB command 'Add util.Rename() & check for plugin'
TBButton LMB command 'Add util.Rename() & check for plugin'

CustomCommands
NormalMove script & PE NormalMove widget 'Add util. Status & Commands and check for plugin'

staticSweepPlusScript 'Add check for plugin'

ctrlSelectionGroup 'Add util Status, Commands and check for plugin' Note: Needs old Status clean up!

Character FK Controls/openPanelFrame script 'Add utilitydata.Copy() & check for plugin'

SnappingScripts 'Update by Author - Clinton Reese

SnappingScripts/openSnappingToolbar script 'Add util.Rename() & check for plugin'

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 requried to be Installed and Loaded when using trueSpace!
User avatar
trueBlue
Captain
Posts: 5206
Joined: 06 Jul 2009, 22:50
Type the number ten into the box: 10

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 55 for trueSpace7.61 Beta 8 Unofficial Update

June 4, 2021

viewtopic.php?f=55&t=3732

Update

Yafaray Folder/YafaRay4tS 'Fix for the External Viewer( + TGA_Viewer) & check for tif plugin' 'Author Clinton Reese'

YafaRay4tS Setup library
YafaRay4tS toolbar 'Add util.Commands and check for plugin'
YafaRay4tS.RsScn
Tiff Loader 'Add check for tif plugin'

CustomCommands
NURBSScripts/sweepPathScript 'Author Clinton Reese'
NormalMove 'Author Clinton Reese'
align and distribute 'Add util.Commands and check for plugin'
planeLoopSelect 'Add util.Commands and check for plugin'

Widgets
PE NormalMove 'Add X Sensitivity preferences panel'
Normal Move preferences.png
Normal Move preferences.png (2.32 KiB) Viewed 3410 times
Point Edit Widget(s)/End edit 'Add util.ClearStatusMessage(0);'

Components - Compositing library/Tiff Loader 'Add check for tif plugin'

web
Update Title(s)
colorpicker.html 'trueSpace Color Picker'
scenetree.html 'trueSpace Scene View'
layers.html 'trueSpace Layers'

layers.js Update 'Author Clinton Reese'


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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 56 for trueSpace7.61 Beta 8 Unofficial Update

June 5, 2021

viewtopic.php?f=55&t=3732

Update

CustomCommands

wsLayersGroup/loadIt
'Check scene for Workspace Layers 4 optional load version 3'

wsLayersGroup4/OpenLayersPanel
'Check scene for Workspace Layers 3 optional removal'

Web Server panel
Update
Open buttons 'Starts the Web Server'

web
Update 'Author Clinton Reese'
layers.js



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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 57 for trueSpace7.61 Beta 8 Unofficial Update

June 5, 2021

viewtopic.php?f=55&t=3732

Update

CustomCommands

Select/Reorder
Fixed an issue with multiple selected items



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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 58 for trueSpace7.61 Beta 8 Unofficial Update

June 7, 2021

viewtopic.php?f=55&t=3732

Update

CustomCommands
NURBSScripts/Lath Curve/openPanelFrame
Select


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

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

Update 59 for trueSpace7.61 Beta 8 Unofficial Update

June 9, 2021

viewtopic.php?f=55&t=3732

Update

CustomCommands
freezeTransforms 'Add util.commands & removed Clear History'
latheScript 'Add Clear History'


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