using System.Collections; using System.Collections.Generic; using UnityEngine; public class RePlayFireFlow : ReplaySimpleObject { public override void SetCloneGameObject(GameObject obj, string json) { base.SetCloneGameObject(obj, json); BoiloverData data = JsonUtility.FromJson(json); obj.GetComponent().SetFireFlowData(data); } }