Introduced RenderExtractionSystem for entity-based render data extraction. Added MeshInstance and MeshPalette components with shadow casting support. Refactored QueryBuilder API, SharedComponentStore, and component registration for clarity and flexibility. Updated SystemManager and SystemGroup to use SystemAPI. Replaced RenderingConfig with GraphicsEngineDesc/RenderSystemDesc. RenderFrame now uses CPU/GPU fence values for sync. Removed Camera.cs in favor of ECS-based rendering. Improved Material, RenderingLayerMask, Mesh, and RenderList APIs. Updated package references and fixed naming, error handling, and disposal issues.
10 lines
106 B
C#
10 lines
106 B
C#
namespace Ghost.Engine;
|
|
|
|
public enum ShadowCastingMode
|
|
{
|
|
Off,
|
|
On,
|
|
TwoSided,
|
|
ShadowsOnly
|
|
}
|