OOGL.GUI.VertexStructures.PositionTexture.PositionTexture C# (CSharp) Method

PositionTexture() public method

public PositionTexture ( Vector3 vertex, System.Vector2 texture ) : System
vertex Vector3
texture System.Vector2
return System
		public PositionTexture(Vector3 vertex, Vector2 texture)
		{
			this.x = vertex.X;
			this.y = vertex.Y;
			this.z = vertex.Z;
			
			this.s = texture.X;
			this.t = texture.Y;
		}
		

Same methods

PositionTexture::PositionTexture ( float x, float y, float z, float s, float t ) : System