12 lines
211 B
GDScript
12 lines
211 B
GDScript
extends GPUParticles3D
|
|
|
|
##North = 0, East = 1, South = 2, West = 3
|
|
var wind_direction: int = 2
|
|
#var snow_amount = GPUParticles3D.amount
|
|
|
|
func _ready() -> void:
|
|
pass
|
|
|
|
func _process(_delta: float) -> void:
|
|
pass
|