Dungeon Generator
1.6.6
Procedural 3D dungeon generator plugin for Unreal Engine 5. Easy generation of levels, mini-maps and missions.
|
#include <DungeonGenerateParameter.h>
Public Member Functions | |
UDungeonGenerateParameter (const FObjectInitializer &ObjectInitializer) | |
int32 | GetRandomSeed () const |
int32 | GetGeneratedRandomSeed () const |
int32 | GetNumberOfCandidateRooms () const |
const FInt32Interval & | GetRoomWidth () const noexcept |
const FInt32Interval & | GetRoomDepth () const noexcept |
const FInt32Interval & | GetRoomHeight () const noexcept |
int32 | GetHorizontalRoomMargin () const noexcept |
int32 | GetVerticalRoomMargin () const noexcept |
FDungeonGridSize | GetGridSize () const |
bool | IsMergeRooms () const noexcept |
bool | IsMovePlayerStartToStartingPoint () const noexcept |
bool | IsUseMissionGraph () const noexcept |
uint8 | GetAisleComplexity () const noexcept |
bool | IsAisleComplexity () const noexcept |
EFrequencyOfGeneration | GetFrequencyOfTorchlightGeneration () const noexcept |
const FDungeonRoomRegister * | GetStartRoom () const |
const FDungeonRoomRegister * | GetGoalRoom () const |
int32 | GetDungeonRoomRegisterCount () const |
const FDungeonRoomRegister * | FindDungeonRoomRegister (const uint32_t reservationNumber) const |
void | EachDungeonRoomRegister (const std::function< bool(const FDungeonRoomRegister &)> &function) const |
void | EachDungeonRoomLocator (const std::function< bool(const FDungeonRoomLocator &)> &function) const |
int32 | GetDungeonRoomLocatorMaxDrawCount () const |
UClass * | GetRoomSensorClass () const |
FVector | ToWorld (const FIntVector &location) const |
FVector | ToWorld (const uint32_t x, const uint32_t y, const uint32_t z) const |
FIntVector | ToGrid (const FVector &location) const |
void | SetRandomParameter () noexcept |
virtual void | GetLifetimeReplicatedProps (TArray< FLifetimeProperty > &OutLifetimeProps) const override |
virtual bool | IsSupportedForNetworking () const override |
Static Public Member Functions | |
static UDungeonGenerateParameter * | GenerateRandomParameter (const UDungeonGenerateParameter *sourceParameter) noexcept |
Friends | |
class | ADungeonGenerateBase |
class | ADungeonGenerateActor |
Dungeon generation parameter ダンジョン生成パラメータ
|
explicit |
|
staticnoexcept |
ランダムなダンジョンのパラメータを生成します
sourceParameter | コピー元パラメータ(メッシュ等の設定をコピーします) |
|
noexcept |
ランダムなダンジョンのパラメータにリセットします
|
protected |
Aisle complexity (0 being the minimum aisle) MergeRooms and UseMissionGraph must be unchecked to enable AisleComplexity
通路の複雑さ(0が最低限の通路) AisleComplexityを有効にするには、MergeRoomsとUseMissionGraphのチェックを外す必要があります
|
protected |
Door Parts
ドアのメッシュパーツデータベース
|
protected |
How to generate door parts
ドアのパーツを生成する方法
|
protected |
Aisle mesh parts database
通路のメッシュパーツデータベース
|
protected |
Interior asset database
インテリアアセットのデータベースを指定して下さい。
|
protected |
Room mesh parts database
部屋のメッシュパーツデータベース
|
protected |
Specify the DungeonRoomSensorBase class, which is a box sensor that covers the room and controls doors and enemy spawn.
DungeonRoomSensorBaseクラスを指定して下さい。 DungeonRoomSensorBaseは部屋を覆う箱センサーで、ドアや敵のスポーンを制御します。
|
protected |
Specify the sublevel database. The sublevel database is the designation of the start and goal rooms and sublevels.
サブレベルのデータベースを指定して下さい。 サブレベルのデータベースはスタート部屋やゴール部屋、サブレベルの指定です。
|
protected |
Generates a flat dungeon
平面的なダンジョンを生成します
|
protected |
Frequency of torchlight generation
燭台の生成頻度
|
protected |
CRC32 of the last dungeon generated
最後に生成されたダンジョンのCRC32
|
protected |
Seed of random numbers used for the last generation
最後の生成に使用された乱数のシード
|
protected |
Generate slopes in the room. May be enabled by future forcing.
部屋の中にスロープを生成する 将来的強制的に有効になる可能性があります。
|
protected |
Generate structural columns in the room May be enabled by future forcing.
部屋の中に構造柱を生成する 将来的強制的に有効になる可能性があります。
|
protected |
Horizontal voxel size
水平方向のボクセルサイズ
|
protected |
Horizontal room-to-room coupling
有効にすると部屋と部屋を結合します
|
protected |
PlayerStart is automatically moved to the start room at the start
開始時にPlayerStartを自動的にスタート部屋に移動します
|
protected |
Candidate Number of Generated Hierarchies This is used as a reference number of hierarchies for generation, not as the final number of hierarchies.
生成される階層数の候補 これは最終的な階層の数ではなく生成時の参考階層数として利用されます。
|
protected |
Candidate number of rooms to be generated This is the initial number of rooms to be generated, not the final number of rooms to be generated.
生成される部屋数の候補 これは最終的な部屋の数ではなく最初に生成される部屋の数です。
|
protected |
Pillar Parts
柱のメッシュパーツデータベース
|
protected |
How to generate parts of pillar
柱のパーツを生成する方法
|
protected |
PluginVersion
プラグインバージョン
|
protected |
Seed of random number (if 0, auto-generated)
乱数のシード(0なら自動生成)
|
protected |
Room depth
部屋の奥行き
|
protected |
Room height
部屋の高さ
|
protected |
Horizontal room-to-room margins MergeRooms must be unchecked to enable Room Horizontal Margin
水平方向の部屋と部屋の空白 Room Horizontal Marginを有効にするにはMergeRoomsのチェックを外す必要があります
|
protected |
Room Width
部屋の幅
|
protected |
Torch (pillar lighting) parts
燭台のメッシュパーツデータベース
|
protected |
How to generate parts for torch
燭台のパーツを生成する方法
|
protected |
Enable MissionGraph to generate missions with keys. MergeRooms must be unchecked and AisleComplexity must be 0 for UseMissionGraph to be enabled.
MissionGraphを有効にして、鍵を使ったミッション情報を生成します UseMissionGraphを有効にするには、MergeRoomsのチェックを外しAisleComplexityを0にする必要があります
|
protected |
Vertical voxel size
垂直方向のボクセルサイズ
|
protected |
Vertical room-to-room margins MergeRooms must be unchecked to enable Room Vertical Margin
垂直方向の部屋と部屋の空白 Room Vertical Marginを有効にするにはMergeRoomsのチェックを外す必要があります