コード例 #1
0
ファイル: Draw.cs プロジェクト: cupsster/SharpSteer2
		public static void Draw2dTextAt2dLocation(String text, Vector3 location, Color color)
		{
			// set text color and raster position
			TextEntry textEntry = new TextEntry { Color = color, Position = new Vector2(location.X, location.Y), Text = text };
		    Game.AddText(textEntry);
		}
コード例 #2
0
ファイル: Demo.cs プロジェクト: cupsster/SharpSteer2
		public void AddText(TextEntry text)
		{
			_texts.Add(text);
		}
コード例 #3
0
ファイル: Draw.cs プロジェクト: cupsster/SharpSteer2
		public static void Draw2dTextAt3dLocation(String text, Vector3 location, Color color)
		{
			// XXX NOTE: "it would be nice if" this had a 2d screenspace offset for
			// the origin of the text relative to the screen space projection of
			// the 3d point.

			// set text color and raster position
			var p = Game.Graphics.GraphicsDevice.Viewport.Project(new Microsoft.Xna.Framework.Vector3(location.X, location.Y, location.Z), Game.ProjectionMatrix, Game.ViewMatrix, Game.WorldMatrix);
			TextEntry textEntry = new TextEntry { Color = color, Position = new Vector2(p.X, p.Y), Text = text };
		    Game.AddText(textEntry);
		}
コード例 #4
0
ファイル: Demo.cs プロジェクト: polytronicgr/SharpSteer2
 public void AddText(TextEntry text)
 {
     _texts.Add(text);
 }