oosyrag's Forum Posts

  • The timer behavior.

  • Store the uid of any object created as your first x value.

    You can then use indexof(uid) to get and delete the line of any specific object in the array.

  • Instead of wait, you could use a timer. That gives you much more control.

    On input trigger (or timer end), you display the next line. To cancel, just stop the timer so it never triggers.

    I'd recommend implementing a way to import and refer to dialogue text from a project file, so that it is not hardcoded into your events and easier to change in the future.

  • The overlapping at offset condition may be of use, but only directionally. Using a helper sprite is cleaner in my opinion.

  • Hmmmmm would you be able to paste a 3d viewport onto a 2d layer with a drawing canvas? I am intrigued.

  • It probably does not make a difference.

    If you're not changing the total area of texture/sprite images, it shouldn't matter. They're all loaded into memory anyway.

  • Is "no PDF or doc links" not clear enough?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Plugins can definitely be a source of issues.

    Usually you would simply open the backup project file in whatever version you created it in, rather than trying to change the version of the file.

    Also for any sort of production work I definitely recommend working with the latest stable rather than beta. The betas can definitely have problems, and you usually don't absolutely need the latest features.

  • Only possibility left is your web host server settings then.

  • Like I mentioned, is most likely server side.

    Routers also have the ability to cache requests in some scenarios to save bandwidth, this may happen in a commercial or institutional setting, unlikely for home internet though.

  • I believe your best bet is to have a user togglable setting.

    To work on Windows, Playstation controllers generally use an xinput wrapper, so as far as the system can tell you're using an xbox controller.

    This is true for all commercial games on PC I've seen myself, none were able to detect that I was using a dualshock automatically and default to showing XBOX tooltips.

  • Not particularly familiar with this, but stackoverflow.com/questions/367786/prevent-browser-caching-of-ajax-call-result sounds relevant.

    You may need to include jquery as a javascript library in your project. I'm not familiar enough with javascript or jquery to know if you can do it without the jquery library.

    Although seems to me this should be (to my limited knowledge) a server side setting, on your webserver, to never serve cached files. Or at least for the directory your updated files reside in.

  • That link is pretty great.

  • That's generally a feature specific to your phone or operating system.

    For example, Xiaomi phones are very aggressive in closing apps that are idle for a certain period of time to save system resources.

    You might be able to find options in the power management settings of your device.

  • I vaguely remember being interested in suggesting giving a user the ability to plug in their own easing formula somewhere, but didn't bother after guessing the utilization rate would probably be so low it wouldn't be worth wasting time on. Lerp with a timer are enough for anyone who wants that much control.