1
Ask a Question / Re: Publish option not available in Stencyl 4.0.1
« on: September 20, 2019, 03:53:31 am »
You have to be sure that you are logged in on your Stencyl App.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Picking the least expensive popular device seems reasonable to me--not only saving some money, but also giving some assurance that if your game works on lower-end hardware, it should work fine on higher-end.
i am making a mobile game and i cant progam a jump button
HaxeUI isn't something I plan to deal with anytime soon. Writing my own UI code from scratch worked really well for my needs. If you want to go that route and want a head start I'll share the code I have. I find it easier to write my own code from the ground up than learn how someone else's works, but the offer is there. I don't have checkboxes, dropdowns, or lists, but I do have the framework for them. I have a widget system, just not those particular three widgets.
This is what I do have:
Menus: http://www.anorthogonaluniverse.com/misc/vallas/2018-03-30-01s.png
Lists with clickable elements: http://www.anorthogonaluniverse.com/misc/vallas/2018-03-30-02s.png
Textboxes and buttons: http://www.anorthogonaluniverse.com/misc/vallas/2018-03-30-03s.png
Image lists: http://www.anorthogonaluniverse.com/misc/vallas/2018-03-05-02.png
Example block usage for setting these up:
1. http://www.anorthogonaluniverse.com/misc/vallas/2018-02-03-03.png
2. http://www.anorthogonaluniverse.com/misc/vallas/2018-02-03-04.png
At one point there was a lot of interest in integrating HaxeUI with Stencyl as an extension. I looked into it last year and it wasn't quite ready. It might be a good option now. Since then I've written my own UI interface from scratch and it serves my needs, but HaxeUI may be worth another look now.
Checkbox can be an actor where you switch its animation based on something.
Lists are just lists. Loop through a list attribute and draw everything or part of it.
Dropdowns could be just a list that appears when you click or select something.
All of those are possible. They have their own set of challenges though, depending on the amount of items you are displaying on lists and dropdowns.