Unreal Math: FVector2DHalf

 
 
struct FVector2DHalf 
{
	/** Holds the vector's X-component. */
	FFloat16 X;

	/** Holds the vector's Y-component. */
	FFloat16 Y;
}

类似于FVector2D,只是把成员类型换成了FFloat16。

猜你喜欢

转载自www.cnblogs.com/haisong1991/p/11273228.html