system
The current scriptable runtime reflection system instance.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine.Experimental.Rendering
- Assembly: UnityEngine.CoreModule
public static IScriptableRuntimeReflectionSystem system { get; set; }
Remarks
Set this property in a method with RuntimeInitializeOnLoadMethodAttribute with your own implementation.
Examples
using UnityEngine;using UnityEngine.Experimental.Rendering;// Empty ScriptableRuntimeReflectionSystem for the exempleclass CustomScriptableRuntimeReflectionSystem : ScriptableRuntimeReflectionSystem {}class CustomScriptableRuntimeReflectionSystemIntegration{ [RuntimeInitializeOnLoadMethod] static void Initialize() { ScriptableRuntimeReflectionSystemSettings.system = new CustomScriptableRuntimeReflectionSystem(); }}