Browse Source

Fixed GameController.ClearValue obsolete message

master
chrisgregan 11 years ago
parent
commit
1d7df5041f
  1. 2
      Assets/Fungus/Scripts/GameController.cs

2
Assets/Fungus/Scripts/GameController.cs

@ -868,7 +868,7 @@ namespace Fungus
* This method returns immediately but it queues an asynchronous command for later execution.
* @param key The key of the value.
*/
[Obsolete("Use Variables.DeleteKey() instead")]
[Obsolete("Use Variables.SetBoolean(key, false) instead")]
public static void ClearValue(string key)
{
Variables.SetInteger(key, 0);

Loading…
Cancel
Save