Updated audio, now we have footstep sounds and background music for each room. There are total 25 rooms to explore. Try it out: https://monochroma380.itch.io/soup-the-vibe-explorer
Updated audio, now we have footstep sounds and background music for each room. There are total 25 rooms to explore. Try it out: https://monochroma380.itch.io/soup-the-vibe-explorer
Great work on the new rooms! Do you do all the art for them?
Also, small note, sometimes the webpage misbehaves a little when capturing the mouse. It will recapture the mouse when you click outside the game window after pressing ESC, you have to be a little less aggressive with the mouse capture. Otherwise, really cool work! I really love how abstract many of the rooms are, and the new cat room was super cute. I need to make one for my kitties
No problem, for mine I put something like:
func _input(event) -> void:
#---------------------
# Replace with your own implementation of MOUSE_MODE switching!!
#---------------------
if Input.mouse_mode != Input.MOUSE_MODE_CAPTURED && !disable_input:
#if event is InputEventKey:
#if event.is_action_pressed("ui_cancel"):
#get_tree().quit()
if event is InputEventMouseButton:
if event.button_index == 1:
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
return
#if event is InputEventKey:
#if event.is_action_pressed("ui_cancel"):
#Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)
#return
if event is InputEventMouseMotion:
if Input.mouse_mode == Input.MOUSE_MODE_CAPTURED:
# Grab the event data and process it.
gather_mouse_input(event)
Then I make sure that when the mouse is supposed to be unfocused I disable the process_mode on the mousehandler, uncapture the mouse, then wait for the focus to come back, then recapture when clicked.