Class DungeonGeneratorPostProcessingGrid2D
Base class for custom post-processing logic.
Inheritance
System.Object
DungeonGeneratorPostProcessingGrid2D
Assembly: cs.temp.dll.dll
Syntax
public class DungeonGeneratorPostProcessingGrid2D : ScriptableObject, IDungeonGeneratorPostProcessing<DungeonGeneratorLevelGrid2D, DungeonGeneratorCallbacksGrid2D>
Properties
Random
Declaration
public Random Random { get; }
Property Value
Methods
RegisterCallbacks(DungeonGeneratorCallbacksGrid2D)
Declaration
public virtual void RegisterCallbacks(DungeonGeneratorCallbacksGrid2D callbacks)
Parameters
Run(DungeonGeneratorLevelGrid2D)
Runs the post-processing logic with a given generated level.
Declaration
public virtual void Run(DungeonGeneratorLevelGrid2D level)
Parameters
SetRandomGenerator(Random)
Declaration
public void SetRandomGenerator(Random random)
Parameters
Type |
Name |
Description |
Random |
random |
|
Implements