예제 #1
0
	public TutorialWeaponMenu(Rect area)
	{
		a = area;		
		tmlm = new TutorialMiningLaserMenu(new Rect(a.x + a.width, a.y, Screen.width - (a.x + a.width), a.height));
		tmlm.SetDraw(false);

		float xOff = 0.0f;
		float yOff = 0.0f;
		float btnWidth = a.width - 2*xOff;
		float btnHeight = 0.05f * a.height; 
		
		Rect btnrec = new Rect(a.x + xOff, a.y + yOff, btnWidth, btnHeight);  
		mlb = new MenuButton(btnrec, "mining laser", ButtonPressed);
		mlb.SetDraw(true);
	}
예제 #2
0
    public TutorialWeaponMenu(Rect area)
    {
        a    = area;
        tmlm = new TutorialMiningLaserMenu(new Rect(a.x + a.width, a.y, Screen.width - (a.x + a.width), a.height));
        tmlm.SetDraw(false);

        float xOff      = 0.0f;
        float yOff      = 0.0f;
        float btnWidth  = a.width - 2 * xOff;
        float btnHeight = 0.05f * a.height;

        Rect btnrec = new Rect(a.x + xOff, a.y + yOff, btnWidth, btnHeight);

        mlb = new MenuButton(btnrec, "mining laser", ButtonPressed);
        mlb.SetDraw(true);
    }