Hello,
Does anybody know how to realize simple text output?
(I want to write a chat for my game)
Moderator: Brume Dev Team
BrumeTexture testFontTex = this.Textures["comics.png"];
BrumeQuadGridMeshTextured testFontMesh = new BrumeQuadGridMeshTextured(this, "testFontMesh", 24.0f, 30.0f, testFontTex.TextureWidth, testFontTex.TextureHeight, 95);
string TEST_FONT_MAP = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ&é\"'(-è_à)=°+^¨$ù%*,?;.:/!|~#{[\\@";
this.testFont = new BrumeFont(this, "Test Font", testFontMesh, TEST_FONT_MAP);
this.testFont.RenderStates.Texture[0] = testFontTex;
this.testFont.RenderStates.Perspective = BrumeRenderParams.PERSPECTIVE_HUD;
this.testFont.RenderStates.UseOwnAmbientLight = true;
this.testFont.Size = 15.0f;
testFont.Reset();
testFont.AddMsg(HUDX(this.BrumeWidth / 2 - 44), HUDY(20), "TEST\nFONT");
Users browsing this forum: No registered users and 2 guests