Example #1
0
        public double this[VehicleFloatParamId id]
        {
            get { return(0); }

            set
            {
                /* nothing to do for agents */
            }
        }
Example #2
0
        public double this[VehicleFloatParamId id]
        {
            get { return(VehicleParams[id]); }

            set
            {
                VehicleParams[id] = value;
                TriggerOnUpdate(UpdateChangedFlags.Physics);
            }
        }
Example #3
0
        public double this[VehicleFloatParamId id]
        {
            get { return(RootPart[id]); }

            set { RootPart[id] = value; }
        }