您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
1.1 KiB
30 行
1.1 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
public class GameSaveSetValueAction : ActionBase
|
|
{
|
|
public string Key = "SomeKey";
|
|
public GameSaveManager.Location saveLocation = GameSaveManager.Location.System;
|
|
public GameSaveManager.ValueType valueType = GameSaveManager.ValueType.String;
|
|
|
|
public string StringValue;
|
|
public int IntValue;
|
|
public bool BoolValue;
|
|
public float FloatValue;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
var gsm = Manager.Get<GameSaveManager>();
|
|
switch(valueType)
|
|
{
|
|
case GameSaveManager.ValueType.Bool: gsm.SetBool(Key, saveLocation, BoolValue); break;
|
|
case GameSaveManager.ValueType.Int: gsm.SetInt(Key, saveLocation, IntValue); break;
|
|
case GameSaveManager.ValueType.Float: gsm.SetFloat(Key, saveLocation, FloatValue); break;
|
|
case GameSaveManager.ValueType.String: gsm.SetString(Key, saveLocation, StringValue); break;
|
|
}
|
|
}
|
|
}
|
|
}
|