123456789101112131415161718192021222324 |
- using UnityEngine;
- namespace BehaviorDesigner.Runtime.Tasks.Unity.UnityPlayerPrefs
- {
- [TaskCategory("Unity/PlayerPrefs")]
- [TaskDescription("Deletes the specified key from the PlayerPrefs.")]
- public class DeleteKey : Action
- {
- [Tooltip("The key to delete")]
- public SharedString key;
- public override TaskStatus OnUpdate()
- {
- PlayerPrefs.DeleteKey(key.Value);
- return TaskStatus.Success;
- }
- public override void OnReset()
- {
- key = "";
- }
- }
- }
|