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

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy