Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
  • 0
susl1kGG

UIScriptedMenu

Доброго времени суток, господа, помогите пожалуйста с созданием GUI меню, я новичок в моддинге и много чего не знаю...
 

class MyMenu extends UIScriptedMenu
{
	
	protected ref Widget m_Root;
	protected ref TextWidget m_HeaderText;
	
	override Widget Init()
	{
		m_Root = GetGame().GetWorkspace().CreateWidgets("MyFolder/gui/bin.layout");
		
		m_HeaderText = TextWidget.Cast(m_Root.FindAnyWidget("headerText"));
		
		return m_Root;
	}
	
	override void Update(float timeslice)
	{
		super.Update(timeslice);
	}
	
	override void OnShow()
	{
		super.OnShow();
		GetGame().GetInput().ResetGameFocus(1);
		SetFocus(m_Root);
	}
	
	override void OnHide()
	{
		super.OnHide();
		GetGame().GetInput().ResetGameFocus();
	}
}

также modded class MissionGameplay

modded class MissionGameplay
{	
	
	private autoptr ref MyMenu m_MyMenu;
	
	void AddToChat(string message)
	{
		m_Chat.Add(new ChatMessageEventParams(0, "Chat", message, ""));
	}
	
	override void OnUpdate(float timeslice)
	{

		super.OnUpdate(timeslice);

		Input input = GetGame().GetInput();
		PlayerBase player = GetGame().GetPlayer();
		if (input.LocalPress("InfinityShopOpen", false))
		{
			GetGame().GetUIManager().ShowScriptedMenu(m_MyMenu, null);
		}
	}
}

нажатие клавиши точно срабатывает и сообщение отправляется в чат, нооо меню не открывается, подскажите пожалуйста, что я делаю не так? 

Share this post


Link to post
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.