Disclaimer If you use the site often and enjoy it, consider donating to help me cover the server costs, and motivate me to spend my time on this project. (Donate) (Crypto)
UObject
UGizmoConstantFrameAxisSource is an IGizmoAxisSource implementation that internally stores the Origin, Direction, and X/Y Tangent constants.
namespace Offsets { namespace Classes { // Inheritance: UObject namespace UGizmoConstantFrameAxisSource { constexpr auto Origin = 0x30; // FVector constexpr auto Direction = 0x3c; // FVector constexpr auto TangentX = 0x48; // FVector constexpr auto TangentY = 0x54; // FVector } } }
public static class Offsets { public static class Classes { // Inheritance: UObject public static class UGizmoConstantFrameAxisSource { public const byte Origin = 0x30; // FVector public const byte Direction = 0x3c; // FVector public const byte TangentX = 0x48; // FVector public const byte TangentY = 0x54; // FVector } } }