/// <summary>Converts an IntVector value to a string, in the form 'X= Y= Z='</summary> public extern static FString Conv_IntVectorToString(FIntVector InIntVec);
/// <summary> /// Constructs a vector from an FIntVector. /// </summary> /// <param name="inVector">FIntVector to copy from.</param> public FVector(FIntVector inVector) : base(E_CreateStruct_FVector_FIntVector(inVector), false) { }
/// <summary> /// Converts an IntVector->string, creating a new string in the form AppendTo+Prefix+InIntVector+Suffix /// @param AppendTo - An existing string to use as the start of the conversion string /// @param Prefix - A string to use as a prefix, after the AppendTo string /// @param InIntVector - The intVector value to convert. Uses the standard FVector::ToString conversion /// @param Suffix - A suffix to append to the end of the conversion string /// @return A new string built from the passed parameters /// </summary> public extern static FString BuildString_IntVector(FString AppendTo, FString Prefix, FIntVector InIntVector, FString Suffix);
/// <summary>Converts an IntVector value to a string, in the form 'X= Y= Z='</summary> public static string Conv_IntVectorToString(FIntVector InIntVec) { string ___ret = Conv_IntVectorToString(IntPtr.Zero, ref InIntVec); return(___ret); }
extern static string Conv_IntVectorToString(IntPtr _this, ref FIntVector InIntVec);
/// <summary> /// Converts an IntVector->string, creating a new string in the form AppendTo+Prefix+InIntVector+Suffix /// @param AppendTo - An existing string to use as the start of the conversion string /// @param Prefix - A string to use as a prefix, after the AppendTo string /// @param InIntVector - The intVector value to convert. Uses the standard FVector::ToString conversion /// @param Suffix - A suffix to append to the end of the conversion string /// @return A new string built from the passed parameters /// </summary> public static string BuildString_IntVector(string AppendTo, string Prefix, FIntVector InIntVector, string Suffix) { string ___ret = BuildString_IntVector(IntPtr.Zero, AppendTo, Prefix, ref InIntVector, Suffix); return(___ret); }
extern static string BuildString_IntVector(IntPtr _this, string AppendTo, string Prefix, ref FIntVector InIntVector, string Suffix);