The GroupName
property of the MapClassVariable
class represents the category or group to which this variable belongs. It is a string value that can be used to organize or categorize variables within the editor environment.
The GroupName
property of the MapClassVariable
class represents the category or group to which this variable belongs. It is a string value that can be used to organize or categorize variables within the editor environment.
To use the GroupName
property, you can get or set its value to categorize the variable within a specific group. This can be useful for organizing variables in the editor UI or for logical grouping during map compilation.
// Example of setting the GroupName property MapClassVariable mapVariable = new MapClassVariable(); mapVariable.GroupName = "PhysicsSettings"; // Example of getting the GroupName property string group = mapVariable.GroupName; // group now holds the value "PhysicsSettings"