Global Variables Unity Code Example


Example: unity global variable


// When I want a really global variable what I do is to make a 
// static class to store this variables, like this:

public static class GlobalVariables{
public static float pathLength;
}
// This way every single script in my game could access this
// variable just writing:

GlobalVariables.pathLength = 1.0f;

GlobalVariables.pathLength += SegmentLength;

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable