No joke, this is actual gameplay! :D
Best posts made by RobinsonX
-
Plugins in hyperPad! (UNOFFICIAL)
DISCLAIMER: This is not an official feature and is not endorsed or sponsored by any official hyperPad associates. I created this as a tool for everyone to use freely.
I have successfully created a web application that can mod your hyperPad project to your heart's content! Although it is still in development, I would like to announce it to the community early so you guys get to try out this new tool!
And yes, you can add and remove
user-generated pluginsfrom your hyperPad project using this software. That means you can copy behaviors, objects and assets from one project and port it over to other projects - a feature that users have asked for a while!You can try out the plugin feature directly in your browser without downloads:
https://rxcodes.github.io/hyperPad-Project-Modder/Feel free to share your plugins here! Please try not to post plugins anywhere else on the forums!
-
RE: DIZBIZ REMAKE WIP
@themerpygirl Awesome! Nice to see more projects like this come out. :)
-
RE: Will a 3D Dancing Line Game work?
@Ethan-D Yes, you could make a dancing line game, but it won't actually be 3D. hyperPad is only a 2D game engine, but you can fake 3D by using isometric graphics.
You'll have to take account of the z order of objects - objects with a higher z order will render over objects with a lower z order. For example, the floor could have 0 as the z order whereas the cube could have 1 as the z order; the cube will be on top of the ground. You can treat the z order as the vertical position in 3D space and it should do the trick.
-
RE: So close to closing shop
So, I decided to take matters onto my own hands.
I'm working on an open source site that can convert hyperPad projects into an HTML file that will be supported by all major browsers.When a working prototype releases, hyperPad will blow up.
This has been a requested feature for a very long time, and I will be proud to deliver it! Currently, you guys can contribute if you guys are in the hyperPad discord server. Let me know there if you want to help!
-
RE: Collision sounds when level starts.
:D
I fixed it! Copy the link and paste it on safari if it doesn't open up here. @JiiS -
RE: RobinsonX (Game ChangeLogs)
Been working on it for a week, it's almost done! :D
-
RE: How to Create a Charater’s Spectral
@Paulo-Orsuli What you're describing is definitely possible.
You have your character sprite. You want to have multiple graphics (the copies) in your scene with the same sprite. Make sure the copies are semi-transparent (tap the color wheel and adjust the opacity).
Your copies shouldn't contain any logic from your character - the only logic for them to have is to follow the player. You can use a Frame Event and connect it to a Move to Object. For the first object, select the copy (itself) then select the player object for the second one so that the copies move to the player. Make the duration 0s. This makes your copies move to your character every frame, so it appears that they're following your player.
Then after Move to Object, you can connect a Move By and move the object a random offset. Make sure the duration is 0 for this too. This will give you that distinct effect you're going for.
-
RE: Button
@BuiltLord You can already do this.
You can select the Global UI layer on the right sidebar and from there you can drag graphics from the Asset Dock to add elements to the screen. You can program the elements to act as buttons.
Latest posts made by RobinsonX
-
RE: How to Create a Charater’s Spectral
@Paulo-Orsuli What you're describing is definitely possible.
You have your character sprite. You want to have multiple graphics (the copies) in your scene with the same sprite. Make sure the copies are semi-transparent (tap the color wheel and adjust the opacity).
Your copies shouldn't contain any logic from your character - the only logic for them to have is to follow the player. You can use a Frame Event and connect it to a Move to Object. For the first object, select the copy (itself) then select the player object for the second one so that the copies move to the player. Make the duration 0s. This makes your copies move to your character every frame, so it appears that they're following your player.
Then after Move to Object, you can connect a Move By and move the object a random offset. Make sure the duration is 0 for this too. This will give you that distinct effect you're going for.
-
RE: How to make checkpoints?
@Franjipang The Modify Save File behavior will have a
Delete All Keysoption which is equivalent to resetting the entire save file (what you shown in the screenshot). The thing is you want to trigger it before loading save values, so you'd want to trigger it before going into the level. This could be done in the title screen so the data isn't reset every time you restart the level. -
RE: RobinsonX (Game ChangeLogs)
Hey everyone! Long time no see. 👀
I'm working on a project in hyperPad. Check it out!
https://www.hyperpad.com/projects/g8csd4nfIt's an open source project that will be able to edit YouTube videos in the far future! I've already used this to produce some content. ;)
Right now, this is more like a basic animation app- a proof of concept. If this gets enough support, I will consider making this into a full fledged app.Features:
- Pan and pinch controls
- Insert audio and images on the timeline (text coming soon)
- Import your own assets (imported assets aren't saved)
- Copy, edit, splice and move tracks
- Automate properties over time with keyframes
- Real-time playback and scrubbing
Please note that this is a very early demo. There will be bugs, and there are a lot of unfinished features. Feel free to report bugs in the comments!
Check out this devlog for this project:
-
RE: How to make checkpoints?
I noticed you have a "checkpoint" save key in your project. You don't need it if you're only saving player position. But if you want to find out what checkpoint the player is at, then it does make sense to have a "checkpoint" save key. Just make sure you use the Load from File behavior to retrieve the checkpoint, since it will be up to date.
-
RE: How to make checkpoints?
@Franjipang You have all the right behaviors. You just want to make sure they are being triggered in the right order. First, you'd want to load all the values before you try using them.

I used a Behavior Bundle to ensure that behaviors are triggered in the right order (left to right). To simplify your logic, I made the player's position the default value for the Load from Save File behaviors. So on a fresh save file, it will just move the player to its original position. When these values are saved, it will use those saved values.
-
RE: THE FIRST PLAY AWARD
@Presto-Games We're fixing this now. Sorry for the spam! 😅
-
RE: How to make a splash screen intro in hyperpad
@Ethan-D This is late but for those who still are interested in how you can achieve this, you can use transform behaviors (the cyan behaviors) such as Move By, Scale To, and Rotate to Angle.
You can use a combination of these behaviors to make your logo move, scale, and rotate.
You can also fade its opacity by using Set Color. For a simple fade in effect, you can set the object's opacity to be 0% so that it is completely transparent. Then in the behaviors, you can place a Set Color behavior to make it change to white with full opacity over time.
A lot of this is knowing how the behavior system works, so I recommend watching YouTube videos from the hyperPad YouTube channel to get a grasp on it. You'll be able to customize exactly how your logo animates by using transform behaviors and some other behaviors.
-
RE: Pick up weapons
@Anathematika Welcome to hyperPad. :)
As actually mentioned, you can use Collision Event to trigger behaviors when colliding with another object. So when your player collides with a gun, you can trigger logic to:
- Remove the gun from the scene
- Make your player hold a weapon (could be a simple sprite change).
- And enable the ability for the player to shoot.
Of course, if you want more customization than what is provided, you are free to use any other behaviors than the preset ones. For example, you can use the Raycast Test behavior if you want bullets to register instantly. Or you could have a graphic of the gun be attached to the player, then you can swap the graphic or change its visibility when the player switches weapons, unequips it, etc.
Pretty much everything you can do in a 2D game is possible in hyperPad. You'd have to break big tasks into smaller steps to achieve what you want. Feel free to ask for anything specific! 👌
-
RE: How can I make ragdoll?
@MoonSJ Make sure the objects don't have a gap at the time of attaching them. Also, in the Pivot Attach behavior, you can choose the anchor point - use this to define where the "joint" will be. The screenshot below shows me selecting an object and then moving the anchor point to where the attachment will roughly be. I also recommend turning off
Attachments Collideso you don't get weird jiggly physics.

