Arima's Forum Posts

  • You do not have permission to view this post

  • Yeah, that's definitely not the problem I was talking about.

  • Are you using noscript?

  • I tried it, but it simply sits there saying connecting. Same for both chrome and firefox.

  • I had a similar problem that might have been the same, but I haven't been able to reproduce it in 47.2 where creating a sprite on top of another sprite or text object would mess up the text object's textures or make the first sprite's texture disappear. Was that one fixed?

  • No, having a global object on the first layout will not result in more instances being made if you leave that layout then go back to it. You can check for yourself how many instances there are via the debugger.

  • With the previous forum software, this wasn't an issue because the search engine crawl bots didn't check profile pages because a person had to be logged in to view them - I'm assuming that isn't an option for web wiz?

    I kind of liked when users could post links at their first post, because it made it real easy to tell who the spammers were and keep the forum clean. If they can't post links, and they post anyway, then there's no way to tell they're spammers and people end up pointlessly responding to them.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hmm... maybe some rep for the number of months you've been a member as well?

  • Jamesx, the rep requirement for tutorials has just been reduced to 100 so anyone can make a tutorial. Give it another shot! :)

  • You do not have permission to view this post

  • It might have to do with the timedelta being very high for the first frame due to loading and such. Go to the application properties, runtime properties, advanced, and set the minimum FPS to something like 30. That might fix it.

  • I hear ya. I've been using it since the earliest betas and I'm STILL occasionally surprised by features I didn't know about! XD

    BTW Kisai, I think you're right, I recall extra options being added to it a while ago.

  • You do not have permission to view this post

  • You can simplify those by using the timer, a built in variable. Other options, you could also use lerp:

    always

    • set opacity to lerp(0, 100, timer/300)

    or use

    always

    • set opacity to cosp(0, 100, timer/300)

    ...for a sine wave instead. But yeah, the sine behavior is the easiest.