Ashley's Recent Forum Activity

    • Post link icon

    Michelangelo_Lite - your post appears to have nothing to do with this topic - if you have trouble using the website please contact supportcit@scirra.com.

  • Whenever I try it "in the wild" (in production on a different device) it works. I just tried it again and it works. You can use an incognito window to test from-scratch ignoring any prior storage. I opened the latest release in an incognito window and waited for the "ready to use offline" notification. Then I went offline, reloaded the page, created a new project, and previewed it. It worked fine.

    As with any issue report, it's usually impossible to make any progress unless you can find a repeatable series of steps to follow to reproduce a case where offline mode is not working.

  • I don't think there's a way to disable font smoothing for text rendered in to a canvas at the moment.

  • See this suggestion that already covers it.

    Currently, the mobile editor is designed to for reviewing and tweaking projects, with any serious development work intended to be done in the desktop version. Therefore not all features of the desktop version are available in the mobile version. In particular many features are difficult to add to the mobile version either due to the input method (e.g. drag-and-drop tends not to work on mobile, because it conflicts with pan scrolling, therefore requiring the feature is seperately re-implemented a different way) or due to the screen size (e.g. it's difficult to envisage how the timeline bar could even fit on-screen at the same time as the layout view on a mobile phone while still being useful, so it's not currently supported). All of this is solvable, but it takes extra work, and we're a small company with limited resources, dealing with thousands of bug reports, hundreds of other feature requests, etc.

    You can plug in a keyboard and mouse to most mobile devices and then use it like a laptop. You can force C3 in to desktop mode in Settings, and then use the full feature set on something like a tablet with a keyboard + mouse.

  • Construct does pre-load preview for use offline. It should work, and I tested it recently and it did seem to work fine. As I always say, unless you wait for the "ready to use offline" notification when loading Construct (or a new version) for the first time, you can't guarantee that all features will work offline. I can only assume you didn't wait for that and quit Construct before it had finished saving for use offline.

  • Nepeo - might be worth trying to phrase the error message more clearly to avoid confusion.

  • A core security principle of the web is: loading resources from other domains is disallowed by default, unless the server specifically allows it. The error messages are because you appear to be trying to fetch an audio file from a different domain, and the server is not set up to specifically allow it.

    Read up on Cross-Origin Resource Sharing (CORS) to learn more. Usually it comes down to adding the HTTP header Access-Control-Allow-Origin: * on the response.

  • See the guide on memory usage in the manual. It's quite simple: image memory use is proportional to its area. Larger images use more memory, and smaller images use less.

    Note don't confuse that with the file size - that has nothing to do with memory usage. A 5kb image file could easily use several megabytes of memory, depending on the dimensions of the actual image.

  • Set the project sampling mode to "Nearest" and sprite fonts will look crisp.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • The platform behavior already has "is touching wall" and "is on floor" which to my knowledge are handled in the behavior's script and simply return true or false -- using them in events does not create extra collision checks.

    Actually as dop2000 has found, these both do collision checks internally as well. They are essentially glorified "is overlapping at offset" checks (but taking in to account other cases like slopes and jump-thrus).

    But even before we get to that, the #1 question for anything related to performance - particularly when implementing new performance-related features - is: what measurements do you have indicating this is a performance bottleneck? The collision engine has already had tons of optimisation work done on it. In particular collision cells normally mean that objects only test collisions against nearby instances. Then objects whose bounding boxes don't overlap are extremely fast to reject as not overlapping. So the real work of collision checks tends to only be poly checks for objects that are actually overlapping. Even this tends to be very little work compared to everything else happening in a project.

    The cases I've seen where collision checks really do affect a project's performance are truly extreme cases, like spawning 1000 objects on-screen at once and having them all check collisions against each other. In that case there's lots of objects in one collision cell, and so the main performance bottleneck is simply iterating through the ~1 million combinations of objects every tick. (And if that all got spread out over a large area, collision cells would still keep it running fast.)

    It's easy to speculate about performance and end up spending ages writing lots of fancy code that ends up having negligible effect on any real games. As a small company with loads to do this has a high opportunity cost, so we have to be careful to spend our time on things that are provably necessary wherever possible.

  • I'm afraid we're unable to help unless you follow the bug report requirements. Closing.

  • You can probably also avoid this by clicking the "Reset dialogs" button in Settings. One of the reasons it's there is to fix disappearing dialogs if your display configuration changes.

Ashley's avatar

Ashley

Early Adopter

Member since 21 May, 2007

Twitter
Ashley has 1,771,066 followers

Connect with Ashley

Trophy Case

  • 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
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • Forum Mega Brain Made 20,000 posts in the forums
  • x126
    Coach One of your tutorials has over 1,000 readers
  • x74
    Educator One of your tutorials has over 10,000 readers
  • x5
    Teacher One of your tutorials has over 100,000 readers
  • Sensei One of your tutorials has over 1,000,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • RTFM Read the fabulous manual
  • x42
    Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

32/44
How to earn trophies

Blogs