Chroma72's Forum Posts

  • You do not have permission to view this post

  • You do not have permission to view this post

  • I agree. A switch statement would come in handy for sure.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Magistross, thanks for the information on advanced random permutation tables. This helped me out a lot.

  • Thanks for fixing this! :smile:

  • Ah ok...I have to manually set the size to (0, 1, 1) to make a 1D array. Now it's giving me the expected results!

  • So I have an 1D array and I do a Array Push Front(n), but the Array X size doesn't change. I know in Javascript the array will just auto-resize when you do a push and pop.

    Basically I need the functionality of a FIFO List.

    Is Array push and pop working as it should?

  • Thanks and done.

  • Hi. Just wondering if a bug fix for the Tween Scale is on the list. Thanks.

  • You can use the tween value action instead of tween property, and then the set scale action with the tween.value expression to get the result you want.

    That would work but it's very kludgy. You'd have to put the scale action in an 'update every tick' and I don't want to do that.

  • Scale is supposed to go off the image's original dimensions, so I do believe this is a bug with Tween.

    If I set an image's size or scale to 0, the ImageWidth still reads as the original value (in my case it's 64) which is the correct behavior. If you set the Scale directly, it scales to the correct size, ie. setting scale to 0.5 make the image half size. But if you set the scale to 0 and then Tween the Scale from 0 to 1, the Scale stays at 0.

    Looks like the Tween Scaling is multiplying against the Width and Height (current image size), instead of ImageWidth and ImageHeight (original image size). This has my game broken unfortunately. :(

  • That's obvious. But the Tween routine is not scaling from 0 to 1. The scale stays at 0. BTW, I do not want to use size.

  • I have an object that I create on start of layout (initially visible is true). Then I set scale to 0. Then I set the Tween property "" Scale to 1, 1 in 3 seconds. But it's not working. BTW, I do not want to use size. Any help would be greatly appreciated.

    Tagged:

  • And I just found where to set the Physics as framerate independent! Thanks Ashley!

  • Based on your post Ashley, I just realized that the monitor refresh on my first computer is set to 60hz and the monitor refresh on my 2nd computer is set to 144 Hz.