Play project
Rain Simulation's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Adherence (score low for poor theme implementation, high for sticking to theme) | #70 | 2.080 | 3.750 |
Impression (score low for unimpressive, high for impressive) | #70 | 1.248 | 2.250 |
Legitimacy (score low for jam-spam, high for authentic "in the spirit" entry) | #72 | 2.219 | 4.000 |
Overall | #73 | 1.664 | 3.000 |
Originality (score low for unoriginal, high for original ideas) | #74 | 1.109 | 2.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
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 .)