The Description
property provides a textual description for the MapClassVariable
. This description is intended to give more context or information about the purpose and usage of the variable within the editor environment.
The Description
property provides a textual description for the MapClassVariable
. This description is intended to give more context or information about the purpose and usage of the variable within the editor environment.
To access or modify the description of a MapClassVariable
, use the Description
property. This property is a string
and can be set or retrieved as needed.
// Example of setting the Description property MapClassVariable mapVar = new MapClassVariable(); mapVar.Description = "This variable controls the spawn rate of enemies."; // Example of getting the Description property string description = mapVar.Description; // Use the description as needed, e.g., display it in the UI