Answers for "unity transformer double en float"

C#
3

unity transformer double en float

float myFloat;
double myDouble;

void Start()
{
	myFloat = (float)myDouble; //give the value of myDouble to myFloat
}
Posted by: Guest on April-13-2020

C# Answers by Framework

Browse Popular Code Answers by Language