You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
8 years ago
|
// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
|
||
|
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
|
||
9 years ago
|
|
||
10 years ago
|
using UnityEngine;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
8 years ago
|
/// <summary>
|
||
|
/// Sets an integer variable to a random value in the defined range.
|
||
|
/// </summary>
|
||
8 years ago
|
[CommandInfo("Variable",
|
||
|
"Random Integer",
|
||
|
"Sets an integer variable to a random value in the defined range.")]
|
||
|
[AddComponentMenu("")]
|
||
|
public class RandomInteger : Command
|
||
|
{
|
||
|
[Tooltip("The variable whos value will be set")]
|
||
|
[VariableProperty(typeof(IntegerVariable))]
|
||
8 years ago
|
[SerializeField] protected IntegerVariable variable;
|
||
8 years ago
|
|
||
|
[Tooltip("Minimum value for random range")]
|
||
8 years ago
|
[SerializeField] protected IntegerData minValue;
|
||
8 years ago
|
|
||
|
[Tooltip("Maximum value for random range")]
|
||
8 years ago
|
[SerializeField] protected IntegerData maxValue;
|
||
8 years ago
|
|
||
|
public override void OnEnter()
|
||
|
{
|
||
|
if (variable != null)
|
||
|
{
|
||
8 years ago
|
variable.Value = Random.Range(minValue.Value, maxValue.Value);
|
||
8 years ago
|
}
|
||
|
|
||
|
Continue();
|
||
|
}
|
||
|
|
||
|
public override string GetSummary()
|
||
|
{
|
||
|
if (variable == null)
|
||
|
{
|
||
|
return "Error: Variable not selected";
|
||
|
}
|
||
|
|
||
8 years ago
|
return variable.Key;
|
||
8 years ago
|
}
|
||
|
|
||
|
public override bool HasReference(Variable variable)
|
||
|
{
|
||
|
return (variable == this.variable);
|
||
|
}
|
||
|
|
||
|
public override Color GetButtonColor()
|
||
|
{
|
||
|
return new Color32(253, 253, 150, 255);
|
||
|
}
|
||
|
}
|
||
10 years ago
|
}
|