love the fnaf joke
R0CK3TDEV
Creator of
Recent community posts
Nice game! Would be cool if the game had a song in the main menu and the you win screen.
Also, something I personally don't like (don't worry, I won'w rate lower for this) is that with max attack, you take like 7-10 hits for the tanks. I think it should be reduced to something like 3-5.
But, taking out that, nice game!
Would love if you rated my game! It's a game where you have to form a crowd to destroy barriers. Also don't jump when you are walking on roads because they are bugged and they won't let you jump on the edges.
Link: https://itch.io/jam/brackeys-5/rate/928861
If you find any bug please comment it so I can fix it ASAP after the jam!
Cool game! I like it's core mechanic, pretty engaging!
Music is nice, and the graphics too, though I noticed something: the characters in the buy section don't fit the art style.
Something I would have liked is that the game had some kind of "Success" sound effect.
Aside from that, really cool game!
Follows the theme in a good way, the gameplay is nice, new mechanics are introduced really good, good music, good art. Overall, nice game!
Though I have found something that I don't like personally and that is that the cube is a bit slidy and in the last level it complicates it a bit more, but that's just me.
So you want to detect if both tags are colliding with a specific object?
If that is want you want, you could add a script to that specific object and add a OnCollisionEnter or OnTriggerEnter (2D or 3D, depending on what you want to do), and check for both tags.
I'd recommend creating two bools: one for a, and one for b, and then setting them on when they collide with the object.
Then in Update() add an if that checks if both bools are on, and then do what you want to do when those 2 objects collide with the specificobject.
Hope this helps!
EDIT: Also, OnTrigger is for colliders with "Is Trigger" on, and OnCollision is for coliders with "Is Trigger" off.
You have Enter, Stay, and Exit which I think are pretty self-explanatory, but just in case:
(the object = object that the script is attached to)
Enter: Used to detect when a object collides with the object.
Stay: Used to detect if an object is still collisioning with the object.
Exit: Used to detect when an object stops colliding with the object.