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.
24 lines
878 B
24 lines
878 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class RePlaySmokeBase : ReplaySimpleObject |
|
{ |
|
public override void CloneObject(string json) |
|
{ |
|
var jsonData = JsonUtility.FromJson<SmokeRecordData>(json); |
|
var clonedObj = EntitiesManager.Instance.CreateObj(cloneBase.clonePrefab, jsonData.myTransform.getMyPosition(), transform, long.Parse(jsonData.objectName)); |
|
clonedObj.name = jsonData.objectName;//名字即ID |
|
SetBaseGameObject(clonedObj, jsonData); |
|
SetCloneGameObject(clonedObj, json); |
|
SetSmokeNongDu(clonedObj, jsonData); |
|
} |
|
|
|
private void SetSmokeNongDu(GameObject clonedObj, SmokeRecordData data) |
|
{ |
|
if (clonedObj.name == data.name) |
|
{ |
|
clonedObj.GetComponent<SmokeControl>().MySmokeMain.maxParticles = data.value * 10; |
|
} |
|
} |
|
}
|
|
|