예제 #1
0
        public HUDLabel(int depth = 0)
        {
            Depth = depth;

            internalText = new HUDRawText {
                Alignment = HUDAlignment.BOTTOMLEFT
            };
        }
		public HUDIncrementIndicatorLabel(string value, string increment, int depth = 0)
			: base(depth)
		{
			Text = value;

			incrementLabel = new HUDRawText
			{
				Text = increment,
			};

			AddHUDOperation(new HUDIncrementIndicatorLabelWiggleOperation());
		}
예제 #3
0
		public HUDLabel(int depth = 0)
		{
			Depth = depth;

			internalText = new HUDRawText{ Alignment = HUDAlignment.BOTTOMLEFT };
		}