Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Rain SimulationView project page

protect yourself from the rain using the umbrella
Submitted by Volian0 — 2 hours, 56 minutes before the deadline
Add to collection

Play project

Rain Simulation's itch.io page

Results

CriteriaRankScore*Raw Score
Adherence (score low for poor theme implementation, high for sticking to theme)#702.0803.750
Impression (score low for unimpressive, high for impressive)#701.2482.250
Legitimacy (score low for jam-spam, high for authentic "in the spirit" entry)#722.2194.000
Overall#731.6643.000
Originality (score low for unoriginal, high for original ideas)#741.1092.000

Ranked from 4 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

It is indeed raining!

These modifications allowed me to compile on windows fyi:

cmake_minimum_required(VERSION 3.23.1)

project(rain)

set(CMAKE_CXX_STANDARD 20)

if(NOT CMAKE_BUILD_TYPE)

  set(CMAKE_BUILD_TYPE Release)

endif()

set(CMAKE_CXX_FLAGS "-Wall")

set(CMAKE_CXX_FLAGS_DEBUG "-g")

set(CMAKE_CXX_FLAGS_RELEASE "-O3")

add_executable(rain main.cpp)

find_package(OpenGL REQUIRED)

target_link_libraries(rain ${OPENGL_LIBRARIES})

file(COPY umbrella.png DESTINATION .)