Tests.FakeGameObject.FakeTransform.Translate C# (CSharp) Method

Translate() public method

public Translate ( Vector3 byVector ) : void
byVector Vector3
return void
            public void Translate(Vector3 byVector)
            {
                this.Position += byVector;
            }
FakeGameObject.FakeTransform