Пример #1
0
        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();
        }
Пример #2
0
        protected SukiSchema()
        {
            name       = "";
            resolution = InputResolution.Trigger;
            data       = SukiData.Instance;

            CalculationFunction   = null;
            ReductionFunction     = null;
            ConditionFunction     = null;
            FloatBoundsFunction   = null;
            Vector2BoundsFunction = null;
            Vector3BoundsFunction = null;
        }