- New: Grid Flow builder's Create Main Path and Create Path nodes support position constraints. Use a script to control where the nodes are created in the flow graph. Sample added to the launchpad
- New: Grid Flow supports static spawn / goal room positions. This allows you to blend your static level art with the procedural dungeon. Added a new sample in the launchpad demoing this
- Fix: Module database is more fault tolerant while finding and assigning user defined connections during compilation. When your connections are off by a little, it will make a better guess of the right connection slot
- Fix: Fixed the grid builder's paint data getting destroyed on dungeon rebuilds
- New: New side scroller sample setup for snap grid flow builders in the Launch Pad
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import shutil | |
import subprocess | |
# Step 0: Delete 'Plugins_Temp' and 'Plugins_5.3' directories if they exist | |
if os.path.exists('Plugins_Temp'): | |
shutil.rmtree('Plugins_Temp') | |
print('Deleted existing Plugins_Temp directory.') | |
if os.path.exists('Plugins_5.3'): | |
shutil.rmtree('Plugins_5.3') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[/Script/Engine.Engine] | |
[CoreRedirects] | |
+ClassRedirects=(MatchSubstring=True,OldName="/Script/OldPluginRuntime",NewName="/Script/NewPluginRuntime") | |
+EnumRedirects=(MatchSubstring=True,OldName="/Script/OldPluginRuntime",NewName="/Script/NewPluginRuntime") | |
+FunctionRedirects=(MatchSubstring=True,OldName="/Script/OldPluginRuntime",NewName="/Script/NewPluginRuntime") | |
+StructRedirects=(MatchSubstring=True,OldName="/Script/OldPluginRuntime",NewName="/Script/NewPluginRuntime") | |
+ClassRedirects=(MatchSubstring=True,OldName="/OldPlugin",NewName="/NewPlugin") | |
+EnumRedirects=(MatchSubstring=True,OldName="/OldPlugin",NewName="/NewPlugin") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "MyMeshExporter.h" | |
#include "RawIndexBuffer.h" | |
#include "StaticMeshVertexBuffer.h" | |
#include "PositionVertexBuffer.h" | |
void UMyMeshExporter::ExportStaticMesh(UStaticMesh* StaticMesh) | |
{ | |
const FStaticMeshVertexBuffer& VertexBuffer = StaticMesh->RenderData->LODResources[0].VertexBuffer; | |
const FPositionVertexBuffer& PositionVertexBuffer = StaticMesh->RenderData->LODResources[0].PositionVertexBuffer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://jeemainonline.in/how-to-prepare-for-jee-main-advanced/ | |
https://amangoeliitb.blogspot.in/ | |
http://ww1.nitinjainiittopper.com/success.php |
Version 2.37.1 Release Notes [19-Mar-2025]
- CRITICAL FIX: Fixed a crash that occurred when building SGF dungeons
Version 2.37.0 Release Notes [18-Mar-2025]
- CRITICAL FIX: Resolved packaging and standalone build failures caused by Engine Upgrade from
5.5.3
to5.5.4
- New: Theme Editor Mode - a new and powerful way to design your dungeon themes, directly within the level viewport
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using DungeonArchitect; | |
using DungeonArchitect.Builders.Grid; | |
public class FurthersRoomsMarkers : DungeonMarkerEmitter { | |
public string startMarker = "StartRoom"; | |
public string endMarker = "EndRoom"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template<typename T> | |
T* GetAsset(const FName& Path) { | |
UObject* Obj = StaticLoadObject(UDungeonThemeAsset::StaticClass(), nullptr, *Path.ToString()); | |
return Cast<T>(Obj); | |
} | |
void ADA413XGameMode::BuildDynamicDungeon() { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert('test'); |
NewerOlder