예제 #1
0
파일: font.cs 프로젝트: an87li/gameEngine
        public virtual void printScreen(float x, float y, String txt)
        {
            RenderFontCommand cmd = new RenderFontCommand(this, x, y, txt, Color4.White);

            cmd.execute();
        }
예제 #2
0
파일: font.cs 프로젝트: an87li/gameEngine
        public virtual void print3d(float x, float y, float z, String txt)
        {
            RenderFontCommand cmd = new RenderFontCommand(this, new Vector3(x, y, z), txt, Color4.White);

            cmd.execute();
        }