Post

CodeRed
CodeRed@CodeRed_dev·
Guy I need feedback for the game cause I'm at the final stretch of development.
CodeRed tweet media
English
14
8
81
13.5K
Henry
Henry@HenrySpragge·
@CodeRed_dev just downloaded it, I'll check it out. was Noita one of your inspirations?
English
1
0
1
346
IllTemperedTuna
IllTemperedTuna@SeaCritDev·
(More feedback in replies and I play) Ok, main thing driving me crazy right now is we need to use the mouse wheel to choose shot fire strength! It would be so nice if this were like other games of this genre where the fire strength is determined by the currrent cursor distance from the player, had grok throw some logic together for you really fast in case this helps: using UnityEngine; public class PlayerMouseDistance : MonoBehaviour { [SerializeField] private Camera playerCamera; [SerializeField] private Transform playerTransform; private void Start() { if (playerTransform == null) playerTransform = transform; if (playerCamera == null) playerCamera = Camera.main; } public float GetDistanceToMouseInScreenPixels() { Vector2 playerWorldPos = playerTransform.position; Vector3 screenPoint = playerCamera.WorldToScreenPoint(playerWorldPos); Vector3 mousePos = Input.mousePosition; return Vector2.Distance(screenPoint, mousePos); } public float GetDistanceToMouseInScreenPixels(Vector2 worldPoint) { Vector3 screenPoint = playerCamera.WorldToScreenPoint(worldPoint); Vector3 mousePos = Input.mousePosition; return Vector2.Distance(screenPoint, mousePos); } }
English
7
0
1
313
Snowdrama
Snowdrama@_snowdrama·
@CodeRed_dev Ohh I'll jump in! I didn't know there was a demo till now XD
English
0
0
1
143
oktotoster
oktotoster@oktotoster·
@CodeRed_dev Played it (I should play the latest version though) but when i played it a few months ago it was PEAK
English
0
0
1
101
nico
nico@ireiamarte·
@CodeRed_dev I can download it later today
English
0
0
1
122
AgLeon
AgLeon@Agus_Pallas·
@CodeRed_dev I liked the game’s concept, its mechanics, and the card combinations. The music fits the game really well—super chill and I really like the art style. The traps too.
English
1
0
0
106
Paylaş