Fuze eshop
-
Could you make a Framework for doing menus and things like this and then maybe you could share it
-
You know what, if this is kept up by a team of a few people, and updated and evolved, it would be possible to pop out updates weekly that add features and update the game list. It could act as amazing way to browse current fuze apps
-
@LinkCraft02 Have you seen the latest tutorial video's about structs? I think an array of structs could help you maintain the games in the project more easily. For example:
games = [ [ .creator = "PB____", .title= "2048", .description= "...", //etc ], [ .creator="SteveZX81", .title="Subs", .description= "..." ///etc ], //etc ] creators = [ [ .username = "PB____", .fuzeteam = false, .donator = false, .info = "" ], [ .username = "SteveZX81", .fuzeteam = false, .donator = false, .info = "First community share live winner" ] //etc. ]
I'm not saying you have to do this, but if you plan on keeping the list up to date, you might think about changing the code so it's easier to keep up to date, and then this is a technique that might be useful for you :)
-
that's not really a struct in fuze terms, that's an object.
a struct is like a typedef in c:
struct mytemplate int x int y endstruct
then initialise an array of them with
mytemplate items[10]
However, they way you have done it there is my preferred way as there are problems using
struct
/endstruct
especially when initialising values via functions. -
This post is deleted! -
@MikeDX In the structures tutorial that I mentioned they would be called an "array of structures". I do agree that
object
would be a better term if you consider other programming languages.I now realize that maybe in the tutorial video's they made a distinction between the term .
struct
andstructure
wherestruct
would be the type andstructure
would be the instance. But in any case, yes, I'd gladly call them objects.Oh oh, just thought of another nice to have: structs with methods :P
-
Is this still available to download??
I tried to download before and it wasn't working -
Yes this project seem very cool but I think he's abandoned ?
-
I removed it because it was outdated. I had a idea and was working on a better version with someone on the fuze team but they don’t work for fuze anymore so that stopped I may make a slightly less cool eahop but it will be better then this last one.
-
I would like to show I photo of what I have but unfortunately the forum will not let me add photos to my posts for the moment.
-
thanks to @Gothon and @joyrider3774 I have found a way to post photos
here is a peek at what I'm working on -
Very cool, good idea this menu !