This jam is now over. It ran from 2024-01-01 06:00:00 to 2024-01-07 17:00:00. View results

Welcome to Blu3 Game Jam 2

Step up to the challenge of creating the best game you can in scarcely a week. Teams of up to 4 people are allowed. Be ready, the theme will be revealed at the start of the Jam. Assemble your team and prepare for this stimulating challenge!

Countdown to Game Jam Start

<script>// Set the date we're counting down to var countDownDate = new Date("Jan 1, 2024 01:00:00").getTime(); // Update the count down every 1 second var countdownfunction = setInterval(function() { // Get today's date and time var now = new Date().getTime(); // Find the distance between now and the count down date var distance = countDownDate - now; // Time calculations for days, hours, minutes and seconds var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); // Display results in the countdown element document.getElementById("countdown").innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s"; // Display specific text when countdown ends if (distance < 0) { clearInterval(countdownfunction); document.getElementById("countdown").innerHTML = "And the Game Jam begins!"; } }, 1000); </script>

Blu3 Game Jam 2 Rules

  • Respectfulness: All participants are expected to treat others with respect. No rudeness or inappropriate behavior will be tolerated.
  • Original Work: All entries should be started and completed within the jam period. Any work started before the jam or stolen from elsewhere will be disqualified.
  • Assets: Pre-made assets (such as sound effects, music or graphics) are allowed, as long as you have legal permission to use them. Make sure to credit the original creators!
  • No AI-generated work: Any entries primarily created by AI or advanced scripting tools will not be accepted. This jam is a showcase of human creativity!