struct FVector2DHalf { /** Holds the vector‘s X-component. */ FFloat16 X; /** Holds the vector‘s Y-component. */ FFloat16 Y; } 类似于FVector2D,只是把成员类型换成了FFloat16。
struct FVector2DHalf { /** Holds the vector‘s X-component. */ FFloat16 X; /** Holds the vector‘s Y-component. */ FFloat16 Y; }
类似于FVector2D,只是把成员类型换成了FFloat16。
Unreal Math: FVector2DHalf
原文:https://www.cnblogs.com/haisong1991/p/11273228.html