Exemplo n.º 1
0
 public CompiledTextElement(string text, Vector2 position, FormatInstruction formatInstruction)
 {
     _text              = text;
     this.position      = position;
     _formatInstruction = formatInstruction;
     size = formatInstruction.font.measureString(text) * formatInstruction.scale;
 }
Exemplo n.º 2
0
 public CompiledTextElement(string text, Vector2 position, FormatInstruction formatInstruction)
 {
     _text              = text;
     this.Position      = position;
     _formatInstruction = formatInstruction;
     Size = formatInstruction.Font.MeasureString(text) * formatInstruction.Scale;
 }
Exemplo n.º 3
0
		public CompiledTextElement( string text, Vector2 position, FormatInstruction formatInstruction )
		{
			_text = text;
			this.position = position;
			_formatInstruction = formatInstruction;
			size = formatInstruction.font.measureString( text ) * formatInstruction.scale;
		}