October 6 2024 build: Difference between revisions
Elevator1512 (talk | contribs) mNo edit summary |
Elevator1512 (talk | contribs) mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{legit}}{{db}} | {{legit}}{{db}} | ||
This build has a number of new features and some fixes. The Mac version is having issues with the new OgreProcedural library, I'll be fixing this (Update - this has been fixed and the package re-uploaded). The PrimShape command has been renamed to (and consolidated into) the CreatePrim command, to simplify code a little. I started support for script runloops, more will come with this soon, but it lets you run commands and other things in scripts while the simulator is running, instead of just on startup (the [[Simple - Runloop]] building demonstrates this feature). More work has been done to fix issues with the new primitives feature. | This build has a number of new features and some fixes. The Mac version is having issues with the new OgreProcedural library, I'll be fixing this (Update - this has been fixed and the package re-uploaded). The PrimShape command has been renamed to (and consolidated into) the CreatePrim command, to simplify code a little. I started support for script runloops, more will come with this soon, but it lets you run commands and other things in scripts while the simulator is running, instead of just on startup (the [[Simple - Runloop]] building demonstrates this feature). More work has been done to fix issues with the new primitives feature. I've made the "[[Simple - Hydraulic]]" building, which demonstrates creating hydraulic elevators using the new primitives feature, the attached picture was taken during the development of this building. | ||
If you made any building scripts using the new prim commands, to update to this version, delete the old CreatePrim command in your code and rename PrimShape to CreatePrim. | If you made any building scripts using the new prim commands, to update to this version, delete the old CreatePrim command in your code and rename PrimShape to CreatePrim. | ||
Changelog: | '''Changelog:''' | ||
# Added support for creating global lights, and added the "SBS" object parameter to the [[Help:Design Guide|guide]] | # Added support for creating global lights, and added the "SBS" object parameter to the [[Help:Design Guide|guide]] | ||
# Added missing physics syntax for prim object | # Added missing physics syntax for prim object | ||
Line 28: | Line 28: | ||
== See also == | == See also == | ||
* [[September 28 2024 build|Previous build]] | * [[September 28 2024 build|Previous build]] | ||
* Next build | * [[October 10 2024 build|Next build]] | ||
* [[Development Builds]] | * [[Development Builds]] | ||
== External links == | == External links == | ||
* [https://skyscrapersimulatorforum.createaforum.com/download-skyscraper-simulator/new-build-10624-build/ | * [https://skyscrapersimulatorforum.createaforum.com/download-skyscraper-simulator/new-build-10624-build/ Build: 10/6/24 build on the Skyscraper Simulator Forum] | ||
[[Category:Development Builds]] | [[Category:Development Builds]] | ||
[[Category:2024 Builds]] | [[Category:2024 Builds]] | ||
[[Category:Beta Builds]] | [[Category:Beta Builds]] |
Latest revision as of 12:48, 12 October 2024
It contains good-faith information, such as an existing building or content. |
It contains good information related to Skyscraper Simulator. |
This build has a number of new features and some fixes. The Mac version is having issues with the new OgreProcedural library, I'll be fixing this (Update - this has been fixed and the package re-uploaded). The PrimShape command has been renamed to (and consolidated into) the CreatePrim command, to simplify code a little. I started support for script runloops, more will come with this soon, but it lets you run commands and other things in scripts while the simulator is running, instead of just on startup (the Simple - Runloop building demonstrates this feature). More work has been done to fix issues with the new primitives feature. I've made the "Simple - Hydraulic" building, which demonstrates creating hydraulic elevators using the new primitives feature, the attached picture was taken during the development of this building.
If you made any building scripts using the new prim commands, to update to this version, delete the old CreatePrim command in your code and rename PrimShape to CreatePrim.
Changelog:
- Added support for creating global lights, and added the "SBS" object parameter to the guide
- Added missing physics syntax for prim object
- Enable physics on outdoor prims (Simple - Primitives building)
- Added advanced PrimAttach syntax, which was missing from the build
- For mesh objects, create an EnablePhysics() function to enable or disable physics separately
- added EnablePhysics command
- Added support for script runloops
- Prevent sim engines from starting multiple times
- Added "Simple - Runloop" building
- Fixed a bug that was causing crashes on building reload
- SetMaterial should use the default material if the specified material cannot be found
- Enable and disable primitives with their parent objects
- Added support for making prims always visible, with the PrimVisible command
- added "Simple - Hydraulic" building
- Initialize primitive mesh object
- Add additional parameter count checks for PrimShape command
- Added support for deleting primitives
- Fixed an issue where the PrimShape command wouldn't work properly on elevator objects
- Set default mesh padding to 0, this fixes an issue where the primitive's collider would be larger than the shape itself
- Print a memory report on startup, currently for meshes
- Renamed PrimShape command to CreatePrim, and removed the original CreatePrim command, to simplify commands