dop2000's Forum Posts

  • Bungalow Looks really cool!

    Answering your question - it's an mp4 video, so you probably can't embed it in the post. You need to upload it to youtube or giphy.com

  • You drop PRImage object, but you are picking a placeholder nearest to a different object - PrizeDetails. You probably need to pick nearest to PRImage.

  • You do not have permission to view this post

  • I don't see how this event can pick and rotate more than one sprite instance. This shouldn't be happening. Can you share the project file?

  • You need to post your project file.

  • Try renaming the file from .c3p to .zip and unpack in Windows. If the archive is broken, then there's probably nothing you can do.

    .

    You can upload the project to any file sharing service like Google Drive or Dropbox, and post the download link here.

  • any ideas what the exact ones would be based on the dimensions given in my first post?

    Sorry, I don't quite understand your setup.

    I also tried putting in 3 small 4 x 4 sprites and pinned to the corner of each image, how do I get it to pick the nearest one?

    Use "Pick nearest" condition.

    Image On Drop
    Placeholder pick nearest to (Image.x, Image.y)
    .........Image set position to Placeholder
    
  • Did you mean Set Angle to angle(Player.X, Player.Y,Mouse.X,Mouse.Y) ?

    Make sure that the image in the sprite is facing to the right.

  • You need to show a screenshot of your events.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Press F12 in editor and check if there are any error messages in Console tab.

    Can you share your project here? maybe we'll be able to open it.

  • I tried Gamesparks addon about a year ago and it was working fine. There are also paid addons for Playfab - they should be working too.

  • You can use round() expression to snap to grid. For example:

    Sprite On Drop : Sprite set X to clamp(round(self.x/100)*100, 300, 700)

    This will snap the sprite between X 300 and 700, at 100px intervals.

    Another option is to put invisible placeholder objects to where you want pictures to be placed. In "On Drop" event pick the nearest placeholder and set the sprite to its position.

  • I don't think it's possible. Also, it's a violation of Google Play policy, possibly AppStore too:

    support.google.com/googleplay/android-developer/answer/9898684

  • Check the position of the Origin image point in all animation frames in the sprite. If you don't want your character to move, it needs to be in the middle of the image (horizontally).

  • My guess is that Google Spreadsheets API is not suitable for tasks like this. It probably takes some time to update data on their servers.

    Why did you decide to use spreadsheets? There are lots of services much better suited for leaderboards - Firebase, Playfab, Gamesparks etc.