コード例 #1
0
 public DisplayMessage(ContentManager Content)
 {
     font       = Content.Load <SpriteFont>(@"Fonts/menuButtonFont");
     background = Content.Load <Texture2D>(@"Textures/whiteRectangle");
     transition = new SmoothTransition(0.0f, 0.002f, 0.0f, 1.0f);
     OffSet     = Vector2.Zero;
 }
コード例 #2
0
 public DisplayMessage(ContentManager Content, Vector2 offSet, string message, int duration)
 {
     font        = Content.Load <SpriteFont>(@"Fonts/menuButtonFont");
     background  = Content.Load <Texture2D>(@"Textures/whiteRectangle");
     transition  = new SmoothTransition(0.0f, 0.002f, 0.0f, 1.0f);
     OffSet      = Vector2.Zero;
     this.OffSet = offSet;
     this.StartAnimation(message, duration);
 }