Skip to content

Commit be598b3

Browse files
committed
Merge branch 'master' into 4.24
2 parents 9ea6ff2 + 499affd commit be598b3

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
CHANGELOG: Prefabricator
22
========================
3+
Version 1.4.0
4+
-----------------
5+
* Fix: Massive improvements to runtime prefab spawning. Spawn thousands of prefabs at runtime with minimal overhead
6+
* New: Procedural Platformer Level sample: Build a platformer level by assembling small building blocks and using those to build more complex nested prefabs, eventually building one nested layout prefab with thousands of valid playable layout randomizations. [Video](https://www.youtube.com/watch?v=RZaYUf_H8fI)
7+
* New: Construction System - Enable your players to build their own worlds by assembling floors, walls, ramps corrdiors. There's a game sample demonstrating this. [Video](https://www.youtube.com/watch?v=jM0IItlTxjg)
8+
* New: Rewrote the thumbnail renderer, drastically improving the performance. The thumbs are rendered and cached only while saving the prefab. This avoid performance issues in the content browser for larger prefabs where they were previously rendered on demand
9+
* New: Prefabs hold soft references to child prefab assets. This avoids breaking reference issues on child prefabs when their location was changed in the content browser
10+
* Fix: Fixed a crash issue when prefab settings were changed from other editor windows (like Dungeon Architect's theme editor window)
11+
* Fix: Prefabricator loads correctly in custom viewports (like Dungeon Architect's theme editor viewport)
12+
* Fix: Deep nested prefabs sometimes had their mobility incorrectly set to movable (when they were static). This also fixes the actor hierarchy unlinking issues where the actors were moved out of the prefab hierarchy
13+
* New: Added a new samples submodule under Content/Samples. All sample content reside in this submodule to avoid increasing the main code repository's size
14+
* New: Prefab Randomizer actor has a delegate to notify when randomization finishes
15+
* Fix: Collision profiles are now saved correctly (Doesn't work in some cases and is still an open issue)
16+
* New: Updated the prefab toolbar icon in the editor window and the prefab actor icon
17+
* New: Moved the documentation to sphinx-docs for cleaner organization and maintainance. Updated the docs with the new construction system feature. [Link](https://docs.prefabricator.io)
18+
* New: Disabled Undo / Redo transactions on creating prefabs to improve performance while mass creating prefabs. This might be restored in the future versions
19+
320
Version 1.3.1-hf1
421
-----------------
522
* New: Prefab Randomizer actor has a delegate to notify when randomization finishes

Prefabricator.uplugin

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"FileVersion" : 3,
33
"FriendlyName" : "Prefabricator",
4-
"Version" : 16,
5-
"VersionName" : "1.3.1-hf1",
4+
"Version" : 17,
5+
"VersionName" : "1.4.0",
66
"CreatedBy" : "Code Respawn",
77
"CreatedByURL" : "http://prefabricator.io",
88
"DocsURL": "http://docs.prefabricator.io",

0 commit comments

Comments
 (0)