T0xicPo1nter Posted June 4, 2019 Posted June 4, 2019 Language: C# Clientside Hey there! I discovered the RAGE.NUI.PauseMenu namespace on clientside and i tried to use some things like TabView and other stuff, but nothing shows up. How do I use them? ~ T0xicPo1nter
Smileey Posted June 4, 2019 Posted June 4, 2019 (edited) try this: public static TabView MainMenu; and then private void BuildMainMenu() { MainMenu = new TabView("The Title"); MainMenu.MoneySubtitle = "Lalala my name is jeff"; #region About { var welcomeItem = new TabTextItem("about", "About", "Author: Jeff"); MainMenu.Tabs.Add(welcomeItem); } #endregion } now you can use it with BuildMainMenu(); have fun Edited June 5, 2019 by Smileey
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now