11 lines
173 B
GDScript
11 lines
173 B
GDScript
class_name Bedrock
|
|
extends GameMaterial
|
|
|
|
func _init() -> void:
|
|
name = "Bedrock"
|
|
color = Color.PURPLE
|
|
density = INF
|
|
|
|
func update(grid, x, y) -> void:
|
|
# Do nothing
|
|
pass
|