private void Awake() { schemas = new List <SukiSchema>(); data = SukiData.Instance; // in the event this is running again, we need to clear existing schemas data.Reset(); ReadConfigFiles(); }
protected SukiSchema() { name = ""; resolution = InputResolution.Trigger; data = SukiData.Instance; CalculationFunction = null; ReductionFunction = null; ConditionFunction = null; FloatBoundsFunction = null; Vector2BoundsFunction = null; Vector3BoundsFunction = null; }