示例#1
0
        public TTFFontInit()
        {
            CCSize s = CCDirector.SharedDirector.WinSize;

            var font = new CCLabelTTF();

            font.Init();
            font.FontName = "Marker Felt";
            font.FontSize = 38;
            font.Text     = ("It is working!");
            AddChild(font);
            font.Position = new CCPoint(s.Width / 2, s.Height / 4 * 2);
        }