
- #Block shooter github android
- #Block shooter github code
- #Block shooter github free
- #Block shooter github windows
It features a text calculator to be used snapped.
#Block shooter github windows
Petals around the rose Simple Petals Around the Rose, a game I created based on the game Petals Around the Rose, which challenges players to think outside the boxĬalculator SNAP A Calculator that I developed for Windows 8, as part of my Microsoft Student Partners program. Contains a rule page and shortcuts for all the challenges. Mini CTF A simple, minature CTF for users to try out and see if they can complete the challenges.


Little Strike Little Strike - a 2d top down multiplayer shooter game, using a peer to peer system, featuring multiple customizations for every player. It disguises learning as a game, in an attempt to help students learn and have fun. Who Knows Who Knows - A game inspired from Wits and Wages. The King's Hand The King's Hand - A 3d fps Archery Assassination Stealth Mission based game similar to Assassin's Creed, but uses bows intead of guns. MeL pentesting MeL Vulnerability - A security vulnerability of Ngee Ann's learning portal was discovered and exposed to the relevant people. GRPG Generic Role-Playing Game - A 2d top down open world game similar to RuneScape, created in just 3 weeks and featured in Ngee Ann's showcase. Myo Space Shooter Space Shooter - A 2d arcade-style game that uses the capabilities of the Myo armband to control the player.

#Block shooter github android
Network Intrusion Detection System A network intrusion detection system built to detect malicious traffic over legitimate traffic and block them in realtime, as well as detecting zero-day attacks.Ĭompetitve Elevator Competitive Elevator - Can you fax more people than your opponent in an action paced elevator simulator? Available on Android for now. I consider these projects completed and it is unlikely that I will continue working on them. You can also use your own soundtrack and have the stars follow that soundtrack. The idea is that as you do so a randomly generated melody will play. Star Pelt A reaction based game where stars come at you and you have to block them. Used by 250,000 users in 1,773 institutions over 96 countries. Typically used by instructors for students. Teammates An open source project based on giving feedback or evalutions.
#Block shooter github free
Feel free to remix it or backpack it for use (but give credit).These are the projects I'm currently working on. 0.9.Īttach this into the forever loop deleting the previous gravity code.īig thanks to Jimmyrooster for writing this article. To make it bounce, you would set the y velocity to Y velocity multiplied by a negative number e.g. It falls if it is not colliding otherwise it stops.
#Block shooter github code
You want an if else block with a condition for hitting something in the slot at the top a set Y Velocity to 0 block in the first gap and the gravity code in the else. Let’s say when the thing collides it stops. Create another sprite or colour for the object to collide with. Set to ((Y Velocity) * (-8))Īnd finally, there is collision. We will add this code into the forever loop. For this I just set Y Velocity to 80% (multiplied by 0.8) of what it was. Things also slow down due to air resistance. To make gravity we need to add a change Y Velocity by block and put a negative number in (so the sprite goes down the screen).

This is because Y Velocity stays at zero. You probably want to attach a when green flag clicked block on top of this. We want the y position of the sprite to change by its y velocity every frame. Basic Physics in ScratchĬreate a sprite for the object you want to fall (or use one you already have).įirst, we will need to create a variable for the current velocity of the sprite. The earth will always be at the bottom of the screen. Most gravity will come from the earth - so we will ignore other objects. If you have an apple and you drop from high up what happens? Well the speed (or velocity) of the apple increases towards objects exerting gravity - in proportion to mass - until it reaches terminal velocity or hits something. To create gravity in scratch we first need to understand how gravity acts in the real world.
