Пример #1
0
        public Quaternion this[VehicleRotationParamId id]
        {
            get { return(Quaternion.Identity); }

            set
            {
                /* nothing to do for agents */
            }
        }
Пример #2
0
        public Quaternion this[VehicleRotationParamId id]
        {
            get { return(VehicleParams[id]); }

            set
            {
                VehicleParams[id] = value;
                TriggerOnUpdate(UpdateChangedFlags.Physics);
            }
        }
Пример #3
0
        public Quaternion this[VehicleRotationParamId id]
        {
            get { return(RootPart[id]); }

            set { RootPart[id] = value; }
        }