Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


system

The current scriptable runtime reflection system instance.
Read time 1 minuteLast updated 6 days ago

Definition

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(); }}