This is amazing! It's the type of idea I wish I had thought of at the time. Excellent use of intentional bugs theme.
VISE
Creator of
Recent community posts
Wow lots of great games to play in this thread!
Here's my game: https://itch.io/jam/wowie-jam-2/rate/552906
https://itch.io/jam/wowie-jam-2/rate/552906
Here's mine. It's a bit rough and very short but hopefully you like it. I'm a young programmer who hopes to one day make a living off of making video games.
Although I focused less on programming and more on art for this jam to help expand my skill set.
https://itch.io/jam/wowie-jam-2/rate/552906
It's super short but I hope you like the concept I was going for
You usually can't apply quaternions directly and it's usually a bad idea to try and do so.
If you want to modify the object's rotation directly best suggestion I have is to modify the eulerAngles. It's much easier to use as it's just a Vector3.
For example something like:
transform.eulerAngles = Quaternion.LookRotation(newRot).eulerAngles;
I haven't tested the above code but I've got something similar running in my game.
Hope this helps
I would suggest at least 2 hours. It sounds like a lot, but stuff can go wrong, especially if you're not used to uploading itch. And you can always re upload if you make changes to the project.
You don't want to be scrambling last minute to get your project up before the deadline and then have the web page become unresponsive due to traffic.
What might help is to think of just one mechanic that you find fun, and then think of a way to break that mechanic in a way that's interesting.
For example, jumping is a fun mechanic, but what if when you jumped you didn't fall back down? Or you jump in the wrong direction? Or every time you jump your top move speed increases for some reason? etc.
Good luck everyone! And remember it's not a bug, it's a 'feature'