コード例 #1
0
ファイル: FxCreateParams.cs プロジェクト: fengqk/Art
	public FxCreateParams(FxCreateParams ori)
	{
		this.refBone = ori.refBone;
		this.performID = ori.performID;
		this.gfxID = ori.gfxID;
		this.hitGfxID = ori.hitGfxID;
		this.localPosition = ori.localPosition;
		this.localRotationEuler = ori.localRotationEuler;
		this.isFollowParent = ori.isFollowParent;
		this.isAtt = ori.isAtt;
		this.isFly = ori.isFly;
	}
コード例 #2
0
ファイル: FxEvent.cs プロジェクト: fengqk/Art
	public FxEvent(float time, int eventMessage)
	{
		this.time = time;
		this.eventMessage = eventMessage;
		this.param = new FxCreateParams();
	}