Beispiel #1
0
        public void PrimaryDirection(Vector3 direction)
        {
            if (PrimaryDirectionImplemented == false)
            {
                return;
            }

            try
            {
                receiver.PrimaryDirection(direction);
            }
            catch (NotImplementedException)
            {
                PrimaryDirectionImplemented = false;
            }
        }