Final trueSpace 7.61 Beta 8 Unofficial Update

User avatar
clintonman
Captain
Posts: 5430
Joined: 21 May 2009, 21:08
Type the number ten into the box: 0
Location: California
Contact:

Re: Final trueSpace 7.61 Beta 8 Unofficial Update

Post by clintonman »

StackViewForUU9.jpg


I found a way to open the stack view and I'd like to restore the stack view button to the UU.
Attached are the button and the change to the global function set
It might make more sense to adjust the button and put the 2 functions in the UUFunctionSet instead of the Global Function Set

button:

Code: Select all

GlobalFS = Node.AccessFnSet('Scripts/CustomCommands/Global Function Set');GlobalFS.OpenHistoryWindow();
2 functions:

Code: Select all

function OpenHistoryWindow()
{
	var WMS = WindowsManager.GetWindowsManagerNodeName();
	var StackPanelNode = FindStackPanel(WMS);

	if(StackPanelNode) return;

	WindowsManager.OpenHistoryWindow();

	WMS = WindowsManager.GetWindowsManagerNodeName();
	var lastFrame = WMS + "/" + Node.SubObject(WMS, Node.SubObjectCount(WMS) - 1)

	var MainWindowFrame = WMS + "/Frame Window";
	WindowsManager.SetFrameOwnerFrame(lastFrame, MainWindowFrame);

	//open default uu libraries
	
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Scenes - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Scenes - Active');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Postprocess');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Tutorial objects');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Script objects');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Materials - Textures');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Materials - DX9');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Lights');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Characters');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Activities - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:My Scene');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:My Objects');

}

function FindStackPanel(currentNode)
{
	if(Node.ShortName(currentNode) == "StackPanelView Node") {
		return currentNode;
	}

	var subObjCount = Node.SubObjectCount(currentNode);

	if(subObjCount == 0) return;

	for(var i=0;i<subObjCount;i++) {
		var subObj = currentNode + "/" + Node.SubObject(currentNode, i);
		var foundval = FindStackPanel(subObj);
		if(foundval) {
			return foundval;
		}
	}
}
Attachments
Global Function Set.RsObj
(38.83 KiB) Downloaded 42 times
Stack View.RsObj
(39.42 KiB) Downloaded 41 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 trueSpace 7.61 Beta 8 Unofficial Update

Post by trueBlue »

clintonman wrote: 20 Feb 2023, 04:46 StackViewForUU9.jpg



I found a way to open the stack view and I'd like to restore the stack view button to the UU.
Attached are the button and the change to the global function set
It might make more sense to adjust the button and put the 2 functions in the UUFunctionSet instead of the Global Function Set

button:

Code: Select all

GlobalFS = Node.AccessFnSet('Scripts/CustomCommands/Global Function Set');GlobalFS.OpenHistoryWindow();
2 functions:

Code: Select all

function OpenHistoryWindow()
{
	var WMS = WindowsManager.GetWindowsManagerNodeName();
	var StackPanelNode = FindStackPanel(WMS);

	if(StackPanelNode) return;

	WindowsManager.OpenHistoryWindow();

	WMS = WindowsManager.GetWindowsManagerNodeName();
	var lastFrame = WMS + "/" + Node.SubObject(WMS, Node.SubObjectCount(WMS) - 1)

	var MainWindowFrame = WMS + "/Frame Window";
	WindowsManager.SetFrameOwnerFrame(lastFrame, MainWindowFrame);

	//open default uu libraries
	
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Scenes - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Scenes - Active');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Postprocess');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Tutorial objects');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Script objects');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Materials - Textures');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Materials - DX9');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Lights');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Characters');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Activities - Base');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:My Scene');
	Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:My Objects');

}

function FindStackPanel(currentNode)
{
	if(Node.ShortName(currentNode) == "StackPanelView Node") {
		return currentNode;
	}

	var subObjCount = Node.SubObjectCount(currentNode);

	if(subObjCount == 0) return;

	for(var i=0;i<subObjCount;i++) {
		var subObj = currentNode + "/" + Node.SubObject(currentNode, i);
		var foundval = FindStackPanel(subObj);
		if(foundval) {
			return foundval;
		}
	}
}
Great!
I will add it to the UUFunctionSet.

There is a typo though:
//Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Tutorial objects');

Code: Select all

Library2.ShowStandardLibraryWindow('Libraries/Main Library Place:Objects - Tutorial Objects');
You can also Dock it:

Code: Select all

WindowsManager.DockFrameToFrame( '/Project/Windows Manager Space/Frame Window/Border Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 1/Split Docking Place/Frame Window, 2', '/Project/Windows Manager Space/Frame Window, 1', '{04BCF3FE-DE2C-45A9-9CCF-F50EC348D4FF}', 0, 65538, 1)
Could this be added to your function?
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC19 2/25/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

2/25/2023
UUCommands
ImportExport
Toolbars
Status Message
MaterialEditor
Custom preferences
Camera1
light01
light02
light03
light04
WS - Default
Widgets
Primitives
Layouts - Configurations
BlankDXMaterial

ctrlSelectionGroup
DX9 Vertex Color
DX9 Vertex Constant Color
Solid Transparency Vertex

Window.Shortcuts
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml
modelCloth2vertexAnim.py

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
.
Color Picker - SHIFT C 'Selected item' or from the Red Toolbar
Color Picker.png
.
Paint Vertex Color
Paint Vertices.png
.
Cloth Conversion
Cloth Conversion.png
.
Enhanced Collada
Enhanced Collada.png
Enhanced Collada.png (24.72 KiB) Viewed 762 times
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC20 2/26/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

2/26/2023
Cloth Conversion 'Add checks for preexisting Cloth Conversions'

UUCommands/UUFunctionSet
function FlattenObjects()
Add:
Node.ConRemove(sel, "vOffset")
Node.ConRemove(sel, "AnimTrack")

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC21 2/27/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

2/27/2023
Cloth Conversion 'Add checks for preexisting Cloth Conversions'
Desktop 'Protect Workspace button opens Synchronize
UUCommands 'Add Synchronize' Note: Restricted to first selected object

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC22 2/28/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

2/28/2023
Toolbars 'Update Render to File icon(s) LMB button commands'

UUCommands 'Update Synchronize, Close All Toolbars Windows and Panels, and Close All Panels'
Notes:
Desktop's Protect Workspace button opens Synchronize
Will not open if Bridge is set to Off
Restricted to first selected object
Delay - Amount of Delay that the Synchronize command runs 'Debounce Timespan' - Author Clinton Reese
Default Delay - 100.000 equals no Delay, higher values will Delay
Synchronize panel's X closes Synchronize and disconnects the Watch Dog Event from the Mouse Listener - Author Clinton Reese
Render to File will close Synchronize
Recommend that you close Synchronize when using Model's Render to File

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC23 3/3/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

3/3/2023
Close X Cover Panels
init.js
Cloth Conversion 'Update - Model Vertex Animation'
Layouts - Configurations ' Add - Model.rsl
My Scene - 'Add - Model.RsScn

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC24 3/6/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

3/6/2023
UUCommands 'Update SetCamera functions' Restrict to Camera
Toolbars 'Update Main, Main2 toolbars'
Lights 'Update Spot and Projector lights' Angle to Camera FOV
LEtools 'Link Editor Navigator closes up to 3 windows that have LE NAV toolbar'
LInk Editor Navigator.png
LInk Editor Navigator.png (29.79 KiB) Viewed 622 times
.
If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC25 3/7/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638440
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada

3/7/2023
Toolbars 'Update Main, Main2 toolbars' Fixed typo

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
User avatar
trueBlue
Captain
Posts: 5214
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 »

trueSpace7.61 Beta 8 Unofficial Update Version 9

Please test this RC26 3/25/2023 :bananatyping:

New Unofficial Update Instructions:
It is Required that you completely Uninstall and Install trueSpace7.61 Beta 8 to a clean directory
You can keep your Rs Main Libraries folder, but all other folders and files should be removed
Install the PDF Manual for trueSpace (Optional but required before installing the Update)
Install the tS76_Vray1_54B8.exe (Optional but required before installing the Update)


If trueSpace is open, Close trueSpace

1.) Install the YafaRay v3.3.0 render engine
2.) Install the tS76PDF 'Manual for Caligari trueSpace' & tS76Video (Optional but required before installing the Update)
3.) Install tS76_Vray1_54B8.exe to C:\trueSpace761 (Optional but required before installing the Update)
4.) Install tS7.61B8.9.exe to C:\trueSpace761
Browse [...] to where you installed C:\trueSpace761, select its folder and then the [Extract] button
Select the [Yes to All] button
5.) Open trueSpace
6.) Select the [OK] button in the OptDetectors plugin Information dialog
7.) Reset to Default Context
When trueSpace opens, select one of the layout tabs at the top
If Vray is installed:
8.) Press your keyboard's CTRL + F8 keys to open the Package Manager
Right click in the Package Manager and select Install New...
Open C:\trueSpace761\Vray_ts.rsx
Right click in the Package Manager's Vray Package and select Load
Close the Package Manager
9.) Close trueSpace

The included Clintons3dPlugin.dll v.1638440, Clintons3dPluginExt.dll v.1638413, Clintons3dRsView.dll v.1638409 and the OptDetectors.dll Author - Vladimir Sisolak, are in: C:\trueSpace761
WARNING: The init.js file Imports the above 4 plugins and should not be Installed from the Package Manager, including any other plugins with the same name that have the rsx extension
All scripts that check for these plugins with the rsx extension have been removed!

Unofficial Update Version 9
Started on Fri Sep 02, 2022

Commands
Removed all of the discontinued xml scripts

Plugins Author - Clinton Reese
Renamed from rsx to dll:
Clintons3dPlugin.dll v1638441
Clintons3dRsView.dll
Clintons3dPluginExt.dll
Add
OptDetectors.dll Author - Vladimir Sisolak

Library
Add
OptDetectors
OptDetectors - Help objects
OptDetectors - Samples

Scripts
Update
init.js 'Loads the above 4 plugins'
Window.Shortcuts.xml
tS761 Workspace Shortcut List.rtf
Widget.Shortcuts.xml

CustomCommands Author - Clinton Reese
Add
JSON Function Set
Global Function Set
Dimensions
Hierarchy
Toolbar Manager
ShortcutRunner

Color Picker
Paint Vertex Color
Cloth Conversion
Enhanced Collada
Scene View 2
Object Statistics
Scene View 2.png
Object Statistics.png
.
3/25/2023
Toolbars:
Main 'Add: Scene View 2 icon'
Main2 'Add: Scene View 2 icon'
ClintonToolbar 'Add: Object Statistics icon'
LENavigatorBar 'Update buttons'

CustomCommands:
LE Tools 'Update'

If the plugins do not Load, Download and Install the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package
https://www.microsoft.com/en-us/downloa ... x?id=26368
Note: When downloading the Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package you are given 3 choices
Choose the 32-bit version; vcredist_x86.exe
Removed due to update
Post Reply