Esempio n. 1
0
UCVarValue FFloatCVar::GetGenericRepDefault (ECVarType type) const
{
	return FromFloat (DefaultValue, type);
}
Esempio n. 2
0
 /// \brief
 ///   Construtor from float value
 VFloat16( float Value )
 {
   FromFloat( Value );
 }
Esempio n. 3
0
UCVarValue FFloatCVar::GetGenericRep (ECVarType type) const
{
	return FromFloat (Value, type);
}
Esempio n. 4
0
 /// \brief
 ///   Default constructor, initializes the value to 0.0f
 VFloat16()
 {
   FromFloat(0.0f);
 }