示例#1
0
 /// <summary>Converts an IntVector value to a string, in the form 'X= Y= Z='</summary>
 public extern static FString Conv_IntVectorToString(FIntVector InIntVec);
示例#2
0
 /// <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)
 {
 }
示例#3
0
 /// <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);
示例#4
0
/// <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);
        }
示例#5
0
 extern static string Conv_IntVectorToString(IntPtr _this, ref FIntVector InIntVec);
示例#6
0
/// <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);
        }
示例#7
0
 extern static string BuildString_IntVector(IntPtr _this, string AppendTo, string Prefix, ref FIntVector InIntVector, string Suffix);