Fix HALF_SLOPE shape

main
copygirl 7 days ago
parent 4b064db838
commit 9c242ff1d1
  1. 2
      world/layers/shape.gd

@ -42,7 +42,7 @@ class Base:
static var FULL := Base.new("full" , _rect())
static var HALF := Base.new("half" , [ 0,1, 2,1, 2,2, 0,2 ], true)
static var SLOPE := Base.new("slope" , [ 0,1, 1,0, 1,1 ], true)
static var HALF_SLOPE := Base.new("half_slope" , [ 0,2, 1,0, 2,2 ], true, true)
static var HALF_SLOPE := Base.new("half_slope" , [ 0,2, 2,1, 2,2 ], true, true)
static var HALF_SLOPE_BIG := Base.new("half_slope_big", [ 0,1, 2,0, 2,2, 0,2 ], true, true)
static func _static_init() -> void:

Loading…
Cancel
Save