1. 程式人生 > >白鷺引擎寫入文字圖層方法例項

白鷺引擎寫入文字圖層方法例項

白鷺引擎
版本:5.2.8
描述:引入文字圖層程式碼例項

程式碼片段:

        private jf_tit: eui.Label;

        public create_text(){

            this.jf_tit = new eui.Label();
            this.jf_tit.text = "0 積分";
            this.jf_tit.size = 12;
            this.jf_tit.x = stageW*0.88;
            this.jf_tit.y = stageH*0.038
; this.addChild(this.jf_tit); }