Jase00's Recent Forum Activity

  • Heh, this had come up before on the older suggestions platform:

    construct.net/en/forum/construct-3/general-discussion-7/suggestion-custom-data-feature-176502

    I agree, does feel like there needs to be a way to deal with variables between families.

    It seems the best way currently, is to forget instance variables, and use JSON or dictionaries as a form of instance variables.

    That's typically what I've ended up doing, it has its pros and cons, but personally I think there are far more pros to use a dictionary than instance vars!

    • You can "dynamically add new instance variables during runtime" (dictionary keys)
    • Can throw the dictionary into a family if you need to create logic relating to 2 dictionary instances and still get any keys needed or do loops (can do dictionary.get on both a dictionary or a family of dictionaries).
    • Can get the names of keys in a loop, unlike instance vars where it's impossible to get names.
    • Can get the keys as expressions, which cannot do with instance vars.

    Cons being picking the dictionary and storing uids and such, and if you want to use containers to avoid picking, then can't add dictionaries to a family container. Boo.

  • This came up on the suggestions platform, and Ashley wrote a response there. Might be something that could eventually be added, but it's a complex area for Scirra to modify:

    github.com/Scirra/Construct-feature-requests/issues/1

  • One thing I'd note, is, you have a 240hz monitor, and get around 70% gpu usage. Can assume if you divide by 4, that would be a more common result (so around 17% gpu usage for 60hz monitors).

    Maybe performance is fine but is struggling to render so quickly!

    To lower gpu usage overall, be mindful of any effects you use. You could also make a "quality" system by using System>Set Canvas Size, where you'd get a blurred result but allows people with weak GPU's or high refresh rates to be able to get a more stable FPS.

    Your cpu seems pretty good for 240hz.

    I'd recommend switching your refresh rate to 60hz to observe performance, so you have good idea of what most people would experience.

  • Tbh there's lots to read here, but I'd love to see some c3p files with measurements, just for some visual feedback like "woah, functions really are X times slower" and such.

    I haven't done a vampire survivor style of game, but I've done an elaborate platformer system, where, depending on the weapons you have equipped, it can change your characters movement set, such as granting you a double jump if any of your weapon slots specifically have a weapon that grants you this, but also some weapons only grant you a buff if you are wielding it, etc.

    This worked very well with up to 12 players, all behaving independently (altho I also did a custom platformer movement that was quite collision-heavy, which is the crux of performance for me).

    What I've learned is, arrays are my best friend. I personally don't feel the use of arrays/dictionaries require much boilerplate stuff, especially if you use containers, as containers save on picking and such and only leave you needing the occasional "for 0 to array.width" (I use "for" when cycling an array, as I like to be able to use "stop loop", which you cannot use in an array's "for each element".

    Tho I may be completely off topic since not focusing on huge numbers of enemies and such, but overall, I am definitely a fan of an abundance of arrays attached to things, feels like you can manipulate and bend everything super smoothly, getting the result I desire.

  • I remember being anti-browser, like surely an app can't be feature-rich if it's confined to a browser. Google docs was good example although an unfair example, felt like a weaker version of Office.

    But then it dawns on you, Discord is web based, even the installed version is web based and can be compared to exporting your game in NWJS.

    But eventually I learned, it really doesn't matter. Much like a successful video game, does anyone judge that FNAF is made in CF2.5? Does anyone judge Undertale being made in GameMaker? No? Right, because it's the actual game itself and how it's designed that's important. Doesn't matter if its made in assembly, JS, Scratch, whatever, it just needs to be a good game.

    So, yeah, C3 is designed very well, does what C2 could do with exception of very few differences, such as LAN preview (but we have remote url which has more benefits, no port forwarding or virtual LAN servers like with C2 if you wanna share a link). If C3 was made in Scratch, that'd be both impossibly impressive and really doesn't matter, because it works and does the job it sets out to do.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • It's stolen from Clickteam btw but they had it coming.

    Wouldn't say stolen, but would say inspired.

    Clickteam, for a long time, had that "tick box grid" system, with an extremely basic "list view" in MMF. Even subevents were an addon that came wayyy later (I think when MMF renamed to CF2.5). Don't even understand how I lived without subevents for so long!

    Construct Classic certainly hit the ground running with its event sheet system, and the rest is history.

  • It's so fast and just makes sense. Rarely if not ever feel like the C3 gets in the way of what I'm trying to do.

    You could do something, a mistake happens, and 9 times out of 10, it's a random mistake you made, and if it's not, or it's a limitation, then you can often work around it with the huge variety of actions, conditions, plugins, etc.

    Yes every software has its weird parts, or could improve somewhere, but I simply don't encounter this.

    Multiplayer is a good example, it's my favourite plugin, I don't get all the buzz about it not being good enough or something. Even if the built-in sync stuff is not for you, then, you can do everything by hand anyway, we have the getbit/setbit actions, we have the ability send messages reliably or unreliably. Yes, again, always room for improvement, maybe room options or more properties for room info (such as name of host when displaying a room list), but guess what, you can workaround this and inject the name into the room name, and tokenise the room name when showing it to the player! Ahh this stuff is why I love game dev. Maybe to some it is convoluted, but to me it's adaptable.

    Major kudos to Scirra team for what they've achieved, but I want to point out Ashley, Diego, and other past devs, because - it's clear that almost every game developer HATES designing UI, can you imagine how it must be making C3... that... Is incomprehensible. Not to mention the rest of the behind the scenes stuff like runtime, bug fixes, backwards compatibility, but, cmon, UI is notoriously hated. The level of patience they must have is God tier.

    Also major kudos to the third party devs, unlocking even further usability within C3, effects, and things thought to be impossible or unlikely to see. I can't comprehend the work that goes in and will just default to "magic", undermining the the actual skill involved.

  • > On your other post, I shared a bug report link that has these exact steps you wrote!

    >

    > When you say C3 app, you mean in nwjs, or in Google Chrome?

    >

    > AFAIK it happens on latest Chrome (also happened about half a year ago, again a Chrome issue), and will likely be fixed around 20th Feb according to what Ashley found. Can use Chrome Dev, or Firefox, for now.

    Sorry, I think I must have missed it. Thanks! I've been requesting features that already exist, reporting bugs that have already been solved... and then forgetting I already did those things. ugh, I'd lose my head if it wasn't attached to me. I'm getting to be like that old person who complains about a problem that was solved 2 decades ago and keeps forgetting that it was solved. :(

    Haha no worries, I get that feeling too, our minds get a bit polluted with so many different things, hard to keep track of!

    At least this issue will be history soon.

  • What I hope to see from Flowcharts, is wayy more simplified event sheet stuff, and more "do most of the work in the flowchart view".

    Events could be mostly "on node changed" etc., not as much tokenising and such. How? I don't know, just wishful thinking but wanted to share.

    I'd absolutely love to see a function dropdown list in flowcharts, which I know others have mentioned and may not be on the cards.

    The reason a function list would be amazing, is, in flowcharts current form (respectfully, it's early days), it is a feature that you could think "well, I could just make this kind of system with event sheets already".

    Things like hierarchies, 3D, custom actions, they all have either saved time, gained us performance, or unlocked something we could never do before.

    Flowcharts feels like a "you could use this, or could do it manually" type of situation, there'd be not much saved time (because of all the events and tokenising, which you'd be doing if you made your own flowchart system via events and JSON - although one time save would be not making some UI to link stuff together), no performance difference AFAIK if you use flowcharts or did it by hand, and it is indeed something we can do ourselves via events.

    This is why I feel a function list or something, would be incredible to see - it suddenly opens a brand new way of designing logic, could even adapt flowcharts beyond dialogue systems and more for AI, kinda like Sims had with it's developer software Edith for designing Sims AI logic. I mean, you could do AI, with current flowcharts or a manually created flowchart system in events, but just feels like it adds that extra flair that Construct is known for, visual rapid development, what you see is what you get.

    But, I get this may not be the intended vision and just needlessly complex. Worth sharing feedback even if it's echoing previous comments, I suppose if a lot of people say something, then that means something.

  • On your other post, I shared a bug report link that has these exact steps you wrote!

    When you say C3 app, you mean in nwjs, or in Google Chrome?

    AFAIK it happens on latest Chrome (also happened about half a year ago, again a Chrome issue), and will likely be fixed around 20th Feb according to what Ashley found. Can use Chrome Dev, or Firefox, for now.

  • To use return values, you will need to double click your function (as if you're about to rename your function) and you will have an option to set the "return type", either number or string.

    This will change how the function works, I.e. you can no longer call the function as an action anymore, and can only call the function as an expression (e.g. You can set a Text object's text to "function.block-left-right").

  • Iirc if you do this, this will give you 0 or 1, depending on if Variable1 is actually set to 22 or not (0 being no its not equal, 1 being yes it is equal).

Jase00's avatar

Jase00

Member since 5 Jan, 2012

Twitter
Jase00 has 11 followers

Trophy Case

  • 12-Year Club
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x15
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x7
    Lightning Draw First person to up-vote a new Construct 3 release
  • x7
    Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

26/44
How to earn trophies