reactions

This commit is contained in:
Rendo 2025-12-05 10:03:45 +05:00
commit 5e20eeb8bf
74 changed files with 891 additions and 19 deletions

View file

@ -0,0 +1,13 @@
extends Resource
class_name Substance
@export var formula: StringName
@export var scientific_name: StringName
@export var melting_point: float
@export var boiling_point: float
@export var color: Color
@export var prefer_scientific_name: bool
func get_formula() -> StringName:
return scientific_name if prefer_scientific_name else formula