纳金网
标题:
使用C#调用Playmaker里使用的全局变量
[打印本页]
作者:
狂风大尉
时间:
2014-9-29 03:01
标题:
使用C#调用Playmaker里使用的全局变量
using UnityEngine;
using System.Collections;
using HutongGames.PlayMaker;
// playmaker控制 //
public class ControllerPlayMaker : MonoBehaviour {
private FsmInt _quanJuBianLiang1;// intzhi 变量类型 int//
private FsmInt _quanJuBianLiang2;// intzhi 变量类型 int//
public int curHP = 0;
public UILabel curText1 ;
public UILabel curText2 ;
void Start ()
{
// 调用全局变量 //
_quanJuBianLiang1 = FsmVariables.GlobalVariables.GetFsmInt ("Money");
_quanJuBianLiang2 = FsmVariables.GlobalVariables.GetFsmInt ("Player");
}
void Update ()
{
int B = _quanJuBianLiang1.Value;
int C = _quanJuBianLiang2.Value;
curText1.text = B.ToString();
curText2.text = C.ToString();
}
}
复制代码
作者:
hyui
时间:
2014-10-2 05:26
Thanks for sharing this !
欢迎光临 纳金网 (http://c-www.narkii.com/club/)
Powered by Discuz! X2.5