Skip to content

Help and Support

686 Topics 4.8k Posts

Ask Questions about hyperPad or provide cool tips and tricks to other users.

  • I think theres a bug with this

    13
    0 Votes
    13 Posts
    2k Views
    SplitMindGamingS
    @Hamed i see makes sense. What i did before you answered this was actually tied my animations with if statements. If flying play flying, if falling play falling, if powerup is enabled play powerup. This seems to work also.
  • Whats the real answer to this

    5
    1 Votes
    5 Posts
    713 Views
    MurtazaM
    You can also create large pixel art by increasing your brush size. For example every 4 pixels is 1 pixel.
  • Any help with box containers?

    4
    0 Votes
    4 Posts
    763 Views
    Aidan_FireA
    @Unitycube2 You can either press on the small button near the Input Field of the box container and you will be given the option to add a value that modifies it, or you can drag the output of another behaviour into the box container and it will read that.
  • Laser

    4
    0 Votes
    4 Posts
    786 Views
    bosswaveB
    @RobinsonX I suppose there is a word for it if I had just taken a second to think about it lol
  • Conditional collisions

    4
    0 Votes
    4 Posts
    842 Views
    StanicaS
    @Murtaza said in Conditional collisions: We have an ignore collisions behaviour. Will this do what you want? https://hyperpad.zendesk.com/hc/en-us/articles/360016443491-Ignore-Collisions ....can't believe I missed that. Thanks!
  • Need help with some math logic

    8
    0 Votes
    8 Posts
    1k Views
    bosswaveB
    @SplitMindGaming Any time :)
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Registering only 1 bullet

    6
    0 Votes
    6 Posts
    572 Views
    RobinsonXR
    @SplitMindGaming Great idea! Single register for a single shot.
  • Am I able to design to just this?

    6
    0 Votes
    6 Posts
    749 Views
    SplitMindGamingS
    @Hamed i just tested it out with the exact dimensions that i resized from photoshop. I tried it with relative position on and off and also relative sizing on and off and still get the same misalignment as seen on the photos from the 4.3 aspect ratio to the ipad pro. Were you able to get it to align on your end?
  • How to achieve this

    6
    0 Votes
    6 Posts
    1k Views
    SplitMindGamingS
    @Aidan-Oxley thanks this a very smart approach.
  • Is the final build more stable?

    12
    1 Votes
    12 Posts
    2k Views
    bosswaveB
    @Hamed I would love to but my project is actually top secret for the time being lol. I believe I had a similar issue with double champion but that was probably due to the poorly organized game logic.
  • Will this affect performance?

    4
    0 Votes
    4 Posts
    597 Views
    HamedH
    Off screen objects don't get "drawn" but they can have logic running on them. If they are physics objects like @bosswave described, then they will affect performance since they are part of the physical world. e.g if two objects bump into each other off screen, the bumped object could make its way back on screen
  • Pause game?

    7
    0 Votes
    7 Posts
    953 Views
    Aidan_FireA
    @SplitMindGaming At the moment time scale affects EVERYTHING and there's no way to change that as far as I know. If you wanted something to stay unaffected you would need to go with custom coding it so all your objects freeze. It depends on the object though, I think it might be possible to move an object while time is frozen but only using Move To Point with 0s duration (I haven't tested this though).
  • My iPad pro

    9
    0 Votes
    9 Posts
    1k Views
    SplitMindGamingS
    @Hamed I tried what you said and now it looks right on an iPad Pro aspect ratio but the images are off on the 4.3 aspect ratio. It’s fine you don’t need to worry about. I’m good with it only looking right on the 4.3 scale. I’d rather have u spend your time on implementing other things like lighting :)
  • Is this a HyperPad limitation?

    10
    1 Votes
    10 Posts
    1k Views
    SplitMindGamingS
    @Murtaza ok yes I understand now. That would be perfect.
  • Settings slider

    4
    0 Votes
    4 Posts
    568 Views
    SplitMindGamingS
    @Aidan-Oxley thanks i will check this out once i get home.
  • Reacting to an overlay being closed

    5
    0 Votes
    5 Posts
    1k Views
    StanicaS
    @SplitMindGaming For one of my modals I did the same thing you did and created the "overlay" on the UI layer. Messy but it works.
  • Multiplayer Camera

    4
    0 Votes
    4 Posts
    866 Views
    Aidan_FireA
    @LinkoGames ohhh. Get average position of both players (add x and y together then divide by 2), and move screen there. Then maybe do what LEGO Star Wars does and make is so players can't walk off screen, and maybe zoom out if you want.
  • Is there a way to do this

    11
    0 Votes
    11 Posts
    2k Views
    bosswaveB
    @SplitMindGaming Without trying it myself, I would recommend setting the backgrounds mass and friction to 0, and maybe using a pivot attach (set to “pin”) instead..? There’s probably a better way of doing this, but this is the simplest I can come up with without messing around lol
  • How To Make A Sports Game?

    2
    0 Votes
    2 Posts
    541 Views
    RobinsonXR
    I don't know how football works... 🤷‍♂️😅 I just know that the project is going to use a lot of movement, collisions, tags, etc. Here are some tips: Tags can be manipulated to control mulitple objects at once. So instead of many individual behaviors doing the same thing, you can have one object control all of the other objects. When touching an object with a specific tag, the behavior would output the object that was touched. This simplifies a lot of things, and all logic can be contained in on object. Try to limit how many timers you use at one point. Having multiple timers running at once can kill performance. Oh, another thing about tags. You can have two tags for two teams. There could be invisible barriers on both sides and you can have events when a tag collides with one side. For example, when "red" team collides with the right barrier, they score.