made basic level
This commit is contained in:
parent
d02d369c13
commit
8408bc05e2
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
|
@ -0,0 +1,35 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/SnowySlopes.png-380e2a7a62d0820317f0a73703f25f6d.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://Graphics/Tiles/SnowySlopes.png"
|
||||||
|
dest_files=[ "res://.import/SnowySlopes.png-380e2a7a62d0820317f0a73703f25f6d.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=false
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
File diff suppressed because one or more lines are too long
|
@ -163,6 +163,16 @@ const TILE_SET_MAP_ELEMS = {
|
||||||
MapElemType.SMALL_SLOPE_RIGHT_2: [13, 14],
|
MapElemType.SMALL_SLOPE_RIGHT_2: [13, 14],
|
||||||
MapElemType.LEDGE: [19, 20, 21, 22],
|
MapElemType.LEDGE: [19, 20, 21, 22],
|
||||||
},
|
},
|
||||||
|
"SnowySlopes": {
|
||||||
|
MapElemType.SQUARE: [0, 1, 2, 3, 4, 5, 6, 7, 8, 21],
|
||||||
|
MapElemType.SLOPE_LEFT: [9, 11],
|
||||||
|
MapElemType.SLOPE_RIGHT: [10, 12],
|
||||||
|
MapElemType.SMALL_SLOPE_LEFT_1: [13, 17],
|
||||||
|
MapElemType.SMALL_SLOPE_LEFT_2: [15, 19],
|
||||||
|
MapElemType.SMALL_SLOPE_RIGHT_1: [14, 18],
|
||||||
|
MapElemType.SMALL_SLOPE_RIGHT_2: [16, 20],
|
||||||
|
MapElemType.LEDGE: [],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
const UNIT_SPRITES = {
|
const UNIT_SPRITES = {
|
||||||
|
@ -181,16 +191,16 @@ const UNIT_SPRITES = {
|
||||||
}
|
}
|
||||||
|
|
||||||
const UNIT_TYPE_MOVE_SPEEDS = {
|
const UNIT_TYPE_MOVE_SPEEDS = {
|
||||||
UnitType.PLAYER: 8,
|
UnitType.PLAYER: 5,
|
||||||
UnitType.NPC: 3,
|
UnitType.NPC: 3,
|
||||||
}
|
}
|
||||||
|
|
||||||
const UNIT_TYPE_JUMP_SPEEDS = {
|
const UNIT_TYPE_JUMP_SPEEDS = {
|
||||||
UnitType.PLAYER: 5,
|
UnitType.PLAYER: 4.5,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SCALE_FACTOR = 2.4
|
const SCALE_FACTOR = 1
|
||||||
const GRID_SIZE = 20 # pixels
|
const GRID_SIZE = 48 # pixels
|
||||||
const GRAVITY = 16.1 # gravity = 32.17 ft/s^2, grid unit is 2ft
|
const GRAVITY = 16.1 # gravity = 32.17 ft/s^2, grid unit is 2ft
|
||||||
const MAX_FALL_SPEED = -37
|
const MAX_FALL_SPEED = -37
|
||||||
const ACCELERATION = 35
|
const ACCELERATION = 35
|
||||||
|
|
|
@ -282,6 +282,9 @@ func check_collision(unit : Unit, collider, collision_into_directions, delta):
|
||||||
if unit.get_condition(Constants.UnitCondition.IS_ON_GROUND, false):
|
if unit.get_condition(Constants.UnitCondition.IS_ON_GROUND, false):
|
||||||
# also shorten vertical component to preserve move vector direction
|
# also shorten vertical component to preserve move vector direction
|
||||||
unit.v_speed *= factor
|
unit.v_speed *= factor
|
||||||
|
# slow down unit if DownhillAutoscroller:
|
||||||
|
if unit is DownhillAutoscrollerPlayer:
|
||||||
|
unit.target_move_speed = unit.min_speed
|
||||||
else:
|
else:
|
||||||
# ceiling collision (horizontal only for now)
|
# ceiling collision (horizontal only for now)
|
||||||
var new_cc_y : float = intersects_results[1].y - Constants.QUANTUM_DIST
|
var new_cc_y : float = intersects_results[1].y - Constants.QUANTUM_DIST
|
||||||
|
|
|
@ -54,8 +54,10 @@ func _ready():
|
||||||
pos = Vector2(position.x / Constants.GRID_SIZE, -1 * position.y / Constants.GRID_SIZE)
|
pos = Vector2(position.x / Constants.GRID_SIZE, -1 * position.y / Constants.GRID_SIZE)
|
||||||
position.x = position.x * Constants.SCALE_FACTOR
|
position.x = position.x * Constants.SCALE_FACTOR
|
||||||
position.y = position.y * Constants.SCALE_FACTOR
|
position.y = position.y * Constants.SCALE_FACTOR
|
||||||
scale.x = Constants.SCALE_FACTOR
|
# scale.x = Constants.SCALE_FACTOR
|
||||||
scale.y = Constants.SCALE_FACTOR
|
# scale.y = Constants.SCALE_FACTOR
|
||||||
|
scale.x = 2.4
|
||||||
|
scale.y = 2.4
|
||||||
|
|
||||||
func init_unit_w_scene(scene):
|
func init_unit_w_scene(scene):
|
||||||
self.scene = scene
|
self.scene = scene
|
||||||
|
|
|
@ -3,9 +3,9 @@ extends Player
|
||||||
class_name DownhillAutoscrollerPlayer
|
class_name DownhillAutoscrollerPlayer
|
||||||
|
|
||||||
export var min_speed : float = 3
|
export var min_speed : float = 3
|
||||||
export var max_speed : float = 16
|
export var max_speed : float = 11
|
||||||
export var player_initiated_acceleration : float = 8
|
export var player_initiated_acceleration : float = 5
|
||||||
export var boost_per_second : float = 10
|
export var boost_per_second : float = 6
|
||||||
|
|
||||||
var last_contacted_map_elem_type : int = Constants.MapElemType.SQUARE
|
var last_contacted_map_elem_type : int = Constants.MapElemType.SQUARE
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,313 @@
|
||||||
|
[gd_resource type="TileSet" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://Graphics/Tiles/SnowySlopes.png" type="Texture" id=1]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
0/name = "SnowySlopes.png 0"
|
||||||
|
0/texture = ExtResource( 1 )
|
||||||
|
0/tex_offset = Vector2( 0, 0 )
|
||||||
|
0/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
0/region = Rect2( 48, 48, 48, 48 )
|
||||||
|
0/tile_mode = 0
|
||||||
|
0/occluder_offset = Vector2( 0, 0 )
|
||||||
|
0/navigation_offset = Vector2( 0, 0 )
|
||||||
|
0/shape_offset = Vector2( 0, 0 )
|
||||||
|
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
0/shape_one_way = false
|
||||||
|
0/shape_one_way_margin = 0.0
|
||||||
|
0/shapes = [ ]
|
||||||
|
0/z_index = 0
|
||||||
|
1/name = "SnowySlopes.png 1"
|
||||||
|
1/texture = ExtResource( 1 )
|
||||||
|
1/tex_offset = Vector2( 0, 0 )
|
||||||
|
1/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
1/region = Rect2( 48, 0, 48, 48 )
|
||||||
|
1/tile_mode = 0
|
||||||
|
1/occluder_offset = Vector2( 0, 0 )
|
||||||
|
1/navigation_offset = Vector2( 0, 0 )
|
||||||
|
1/shape_offset = Vector2( 0, 0 )
|
||||||
|
1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
1/shape_one_way = false
|
||||||
|
1/shape_one_way_margin = 0.0
|
||||||
|
1/shapes = [ ]
|
||||||
|
1/z_index = 0
|
||||||
|
2/name = "SnowySlopes.png 2"
|
||||||
|
2/texture = ExtResource( 1 )
|
||||||
|
2/tex_offset = Vector2( 0, 0 )
|
||||||
|
2/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
2/region = Rect2( 0, 0, 48, 48 )
|
||||||
|
2/tile_mode = 0
|
||||||
|
2/occluder_offset = Vector2( 0, 0 )
|
||||||
|
2/navigation_offset = Vector2( 0, 0 )
|
||||||
|
2/shape_offset = Vector2( 0, 0 )
|
||||||
|
2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
2/shape_one_way = false
|
||||||
|
2/shape_one_way_margin = 0.0
|
||||||
|
2/shapes = [ ]
|
||||||
|
2/z_index = 0
|
||||||
|
3/name = "SnowySlopes.png 3"
|
||||||
|
3/texture = ExtResource( 1 )
|
||||||
|
3/tex_offset = Vector2( 0, 0 )
|
||||||
|
3/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
3/region = Rect2( 96, 0, 48, 48 )
|
||||||
|
3/tile_mode = 0
|
||||||
|
3/occluder_offset = Vector2( 0, 0 )
|
||||||
|
3/navigation_offset = Vector2( 0, 0 )
|
||||||
|
3/shape_offset = Vector2( 0, 0 )
|
||||||
|
3/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
3/shape_one_way = false
|
||||||
|
3/shape_one_way_margin = 0.0
|
||||||
|
3/shapes = [ ]
|
||||||
|
3/z_index = 0
|
||||||
|
4/name = "SnowySlopes.png 4"
|
||||||
|
4/texture = ExtResource( 1 )
|
||||||
|
4/tex_offset = Vector2( 0, 0 )
|
||||||
|
4/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
4/region = Rect2( 0, 48, 48, 48 )
|
||||||
|
4/tile_mode = 0
|
||||||
|
4/occluder_offset = Vector2( 0, 0 )
|
||||||
|
4/navigation_offset = Vector2( 0, 0 )
|
||||||
|
4/shape_offset = Vector2( 0, 0 )
|
||||||
|
4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
4/shape_one_way = false
|
||||||
|
4/shape_one_way_margin = 0.0
|
||||||
|
4/shapes = [ ]
|
||||||
|
4/z_index = 0
|
||||||
|
5/name = "SnowySlopes.png 5"
|
||||||
|
5/texture = ExtResource( 1 )
|
||||||
|
5/tex_offset = Vector2( 0, 0 )
|
||||||
|
5/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
5/region = Rect2( 96, 48, 48, 48 )
|
||||||
|
5/tile_mode = 0
|
||||||
|
5/occluder_offset = Vector2( 0, 0 )
|
||||||
|
5/navigation_offset = Vector2( 0, 0 )
|
||||||
|
5/shape_offset = Vector2( 0, 0 )
|
||||||
|
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
5/shape_one_way = false
|
||||||
|
5/shape_one_way_margin = 0.0
|
||||||
|
5/shapes = [ ]
|
||||||
|
5/z_index = 0
|
||||||
|
6/name = "SnowySlopes.png 6"
|
||||||
|
6/texture = ExtResource( 1 )
|
||||||
|
6/tex_offset = Vector2( 0, 0 )
|
||||||
|
6/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
6/region = Rect2( 48, 96, 48, 48 )
|
||||||
|
6/tile_mode = 0
|
||||||
|
6/occluder_offset = Vector2( 0, 0 )
|
||||||
|
6/navigation_offset = Vector2( 0, 0 )
|
||||||
|
6/shape_offset = Vector2( 0, 0 )
|
||||||
|
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
6/shape_one_way = false
|
||||||
|
6/shape_one_way_margin = 0.0
|
||||||
|
6/shapes = [ ]
|
||||||
|
6/z_index = 0
|
||||||
|
7/name = "SnowySlopes.png 7"
|
||||||
|
7/texture = ExtResource( 1 )
|
||||||
|
7/tex_offset = Vector2( 0, 0 )
|
||||||
|
7/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
7/region = Rect2( 0, 96, 48, 48 )
|
||||||
|
7/tile_mode = 0
|
||||||
|
7/occluder_offset = Vector2( 0, 0 )
|
||||||
|
7/navigation_offset = Vector2( 0, 0 )
|
||||||
|
7/shape_offset = Vector2( 0, 0 )
|
||||||
|
7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
7/shape_one_way = false
|
||||||
|
7/shape_one_way_margin = 0.0
|
||||||
|
7/shapes = [ ]
|
||||||
|
7/z_index = 0
|
||||||
|
8/name = "SnowySlopes.png 8"
|
||||||
|
8/texture = ExtResource( 1 )
|
||||||
|
8/tex_offset = Vector2( 0, 0 )
|
||||||
|
8/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
8/region = Rect2( 96, 96, 48, 48 )
|
||||||
|
8/tile_mode = 0
|
||||||
|
8/occluder_offset = Vector2( 0, 0 )
|
||||||
|
8/navigation_offset = Vector2( 0, 0 )
|
||||||
|
8/shape_offset = Vector2( 0, 0 )
|
||||||
|
8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
8/shape_one_way = false
|
||||||
|
8/shape_one_way_margin = 0.0
|
||||||
|
8/shapes = [ ]
|
||||||
|
8/z_index = 0
|
||||||
|
9/name = "SnowySlopes.png 9"
|
||||||
|
9/texture = ExtResource( 1 )
|
||||||
|
9/tex_offset = Vector2( 0, 0 )
|
||||||
|
9/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
9/region = Rect2( 144, 0, 48, 48 )
|
||||||
|
9/tile_mode = 0
|
||||||
|
9/occluder_offset = Vector2( 0, 0 )
|
||||||
|
9/navigation_offset = Vector2( 0, 0 )
|
||||||
|
9/shape_offset = Vector2( 0, 0 )
|
||||||
|
9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
9/shape_one_way = false
|
||||||
|
9/shape_one_way_margin = 0.0
|
||||||
|
9/shapes = [ ]
|
||||||
|
9/z_index = 0
|
||||||
|
10/name = "SnowySlopes.png 10"
|
||||||
|
10/texture = ExtResource( 1 )
|
||||||
|
10/tex_offset = Vector2( 0, 0 )
|
||||||
|
10/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
10/region = Rect2( 192, 0, 48, 48 )
|
||||||
|
10/tile_mode = 0
|
||||||
|
10/occluder_offset = Vector2( 0, 0 )
|
||||||
|
10/navigation_offset = Vector2( 0, 0 )
|
||||||
|
10/shape_offset = Vector2( 0, 0 )
|
||||||
|
10/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
10/shape_one_way = false
|
||||||
|
10/shape_one_way_margin = 0.0
|
||||||
|
10/shapes = [ ]
|
||||||
|
10/z_index = 0
|
||||||
|
11/name = "SnowySlopes.png 11"
|
||||||
|
11/texture = ExtResource( 1 )
|
||||||
|
11/tex_offset = Vector2( 0, 0 )
|
||||||
|
11/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
11/region = Rect2( 144, 48, 48, 48 )
|
||||||
|
11/tile_mode = 0
|
||||||
|
11/occluder_offset = Vector2( 0, 0 )
|
||||||
|
11/navigation_offset = Vector2( 0, 0 )
|
||||||
|
11/shape_offset = Vector2( 0, 0 )
|
||||||
|
11/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
11/shape_one_way = false
|
||||||
|
11/shape_one_way_margin = 0.0
|
||||||
|
11/shapes = [ ]
|
||||||
|
11/z_index = 0
|
||||||
|
12/name = "SnowySlopes.png 12"
|
||||||
|
12/texture = ExtResource( 1 )
|
||||||
|
12/tex_offset = Vector2( 0, 0 )
|
||||||
|
12/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
12/region = Rect2( 192, 48, 48, 48 )
|
||||||
|
12/tile_mode = 0
|
||||||
|
12/occluder_offset = Vector2( 0, 0 )
|
||||||
|
12/navigation_offset = Vector2( 0, 0 )
|
||||||
|
12/shape_offset = Vector2( 0, 0 )
|
||||||
|
12/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
12/shape_one_way = false
|
||||||
|
12/shape_one_way_margin = 0.0
|
||||||
|
12/shapes = [ ]
|
||||||
|
12/z_index = 0
|
||||||
|
13/name = "SnowySlopes.png 13"
|
||||||
|
13/texture = ExtResource( 1 )
|
||||||
|
13/tex_offset = Vector2( 0, 0 )
|
||||||
|
13/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
13/region = Rect2( 0, 144, 48, 48 )
|
||||||
|
13/tile_mode = 0
|
||||||
|
13/occluder_offset = Vector2( 0, 0 )
|
||||||
|
13/navigation_offset = Vector2( 0, 0 )
|
||||||
|
13/shape_offset = Vector2( 0, 0 )
|
||||||
|
13/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
13/shape_one_way = false
|
||||||
|
13/shape_one_way_margin = 0.0
|
||||||
|
13/shapes = [ ]
|
||||||
|
13/z_index = 0
|
||||||
|
14/name = "SnowySlopes.png 14"
|
||||||
|
14/texture = ExtResource( 1 )
|
||||||
|
14/tex_offset = Vector2( 0, 0 )
|
||||||
|
14/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
14/region = Rect2( 144, 144, 48, 48 )
|
||||||
|
14/tile_mode = 0
|
||||||
|
14/occluder_offset = Vector2( 0, 0 )
|
||||||
|
14/navigation_offset = Vector2( 0, 0 )
|
||||||
|
14/shape_offset = Vector2( 0, 0 )
|
||||||
|
14/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
14/shape_one_way = false
|
||||||
|
14/shape_one_way_margin = 0.0
|
||||||
|
14/shapes = [ ]
|
||||||
|
14/z_index = 0
|
||||||
|
15/name = "SnowySlopes.png 15"
|
||||||
|
15/texture = ExtResource( 1 )
|
||||||
|
15/tex_offset = Vector2( 0, 0 )
|
||||||
|
15/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
15/region = Rect2( 48, 144, 48, 48 )
|
||||||
|
15/tile_mode = 0
|
||||||
|
15/occluder_offset = Vector2( 0, 0 )
|
||||||
|
15/navigation_offset = Vector2( 0, 0 )
|
||||||
|
15/shape_offset = Vector2( 0, 0 )
|
||||||
|
15/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
15/shape_one_way = false
|
||||||
|
15/shape_one_way_margin = 0.0
|
||||||
|
15/shapes = [ ]
|
||||||
|
15/z_index = 0
|
||||||
|
16/name = "SnowySlopes.png 16"
|
||||||
|
16/texture = ExtResource( 1 )
|
||||||
|
16/tex_offset = Vector2( 0, 0 )
|
||||||
|
16/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
16/region = Rect2( 96, 144, 48, 48 )
|
||||||
|
16/tile_mode = 0
|
||||||
|
16/occluder_offset = Vector2( 0, 0 )
|
||||||
|
16/navigation_offset = Vector2( 0, 0 )
|
||||||
|
16/shape_offset = Vector2( 0, 0 )
|
||||||
|
16/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
16/shape_one_way = false
|
||||||
|
16/shape_one_way_margin = 0.0
|
||||||
|
16/shapes = [ ]
|
||||||
|
16/z_index = 0
|
||||||
|
17/name = "SnowySlopes.png 17"
|
||||||
|
17/texture = ExtResource( 1 )
|
||||||
|
17/tex_offset = Vector2( 0, 0 )
|
||||||
|
17/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
17/region = Rect2( 0, 192, 48, 48 )
|
||||||
|
17/tile_mode = 0
|
||||||
|
17/occluder_offset = Vector2( 0, 0 )
|
||||||
|
17/navigation_offset = Vector2( 0, 0 )
|
||||||
|
17/shape_offset = Vector2( 0, 0 )
|
||||||
|
17/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
17/shape_one_way = false
|
||||||
|
17/shape_one_way_margin = 0.0
|
||||||
|
17/shapes = [ ]
|
||||||
|
17/z_index = 0
|
||||||
|
18/name = "SnowySlopes.png 18"
|
||||||
|
18/texture = ExtResource( 1 )
|
||||||
|
18/tex_offset = Vector2( 0, 0 )
|
||||||
|
18/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
18/region = Rect2( 144, 192, 48, 48 )
|
||||||
|
18/tile_mode = 0
|
||||||
|
18/occluder_offset = Vector2( 0, 0 )
|
||||||
|
18/navigation_offset = Vector2( 0, 0 )
|
||||||
|
18/shape_offset = Vector2( 0, 0 )
|
||||||
|
18/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
18/shape_one_way = false
|
||||||
|
18/shape_one_way_margin = 0.0
|
||||||
|
18/shapes = [ ]
|
||||||
|
18/z_index = 0
|
||||||
|
19/name = "SnowySlopes.png 19"
|
||||||
|
19/texture = ExtResource( 1 )
|
||||||
|
19/tex_offset = Vector2( 0, 0 )
|
||||||
|
19/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
19/region = Rect2( 48, 192, 48, 48 )
|
||||||
|
19/tile_mode = 0
|
||||||
|
19/occluder_offset = Vector2( 0, 0 )
|
||||||
|
19/navigation_offset = Vector2( 0, 0 )
|
||||||
|
19/shape_offset = Vector2( 0, 0 )
|
||||||
|
19/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
19/shape_one_way = false
|
||||||
|
19/shape_one_way_margin = 0.0
|
||||||
|
19/shapes = [ ]
|
||||||
|
19/z_index = 0
|
||||||
|
20/name = "SnowySlopes.png 20"
|
||||||
|
20/texture = ExtResource( 1 )
|
||||||
|
20/tex_offset = Vector2( 0, 0 )
|
||||||
|
20/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
20/region = Rect2( 96, 192, 48, 48 )
|
||||||
|
20/tile_mode = 0
|
||||||
|
20/occluder_offset = Vector2( 0, 0 )
|
||||||
|
20/navigation_offset = Vector2( 0, 0 )
|
||||||
|
20/shape_offset = Vector2( 0, 0 )
|
||||||
|
20/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
20/shape_one_way = false
|
||||||
|
20/shape_one_way_margin = 0.0
|
||||||
|
20/shapes = [ ]
|
||||||
|
20/z_index = 0
|
||||||
|
21/name = "SnowySlopes.png 21"
|
||||||
|
21/texture = ExtResource( 1 )
|
||||||
|
21/tex_offset = Vector2( 0, 0 )
|
||||||
|
21/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
21/region = Rect2( 144, 96, 48, 48 )
|
||||||
|
21/tile_mode = 0
|
||||||
|
21/occluder_offset = Vector2( 0, 0 )
|
||||||
|
21/navigation_offset = Vector2( 0, 0 )
|
||||||
|
21/shape_offset = Vector2( 0, 0 )
|
||||||
|
21/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
21/shape_one_way = false
|
||||||
|
21/shape_one_way_margin = 0.0
|
||||||
|
21/shapes = [ ]
|
||||||
|
21/z_index = 0
|
|
@ -0,0 +1,117 @@
|
||||||
|
[gd_resource type="TileSet" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://Graphics/Tiles/SnowySlopes.png" type="Texture" id=1]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
0/name = "SnowySlopes.png 0"
|
||||||
|
0/texture = ExtResource( 1 )
|
||||||
|
0/tex_offset = Vector2( 0, 0 )
|
||||||
|
0/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
0/region = Rect2( 0, 240, 48, 48 )
|
||||||
|
0/tile_mode = 0
|
||||||
|
0/occluder_offset = Vector2( 0, 0 )
|
||||||
|
0/navigation_offset = Vector2( 0, 0 )
|
||||||
|
0/shape_offset = Vector2( 0, 0 )
|
||||||
|
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
0/shape_one_way = false
|
||||||
|
0/shape_one_way_margin = 0.0
|
||||||
|
0/shapes = [ ]
|
||||||
|
0/z_index = 0
|
||||||
|
1/name = "SnowySlopes.png 1"
|
||||||
|
1/texture = ExtResource( 1 )
|
||||||
|
1/tex_offset = Vector2( 0, 0 )
|
||||||
|
1/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
1/region = Rect2( 144, 288, 48, 48 )
|
||||||
|
1/tile_mode = 0
|
||||||
|
1/occluder_offset = Vector2( 0, 0 )
|
||||||
|
1/navigation_offset = Vector2( 0, 0 )
|
||||||
|
1/shape_offset = Vector2( 0, 0 )
|
||||||
|
1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
1/shape_one_way = false
|
||||||
|
1/shape_one_way_margin = 0.0
|
||||||
|
1/shapes = [ ]
|
||||||
|
1/z_index = 0
|
||||||
|
2/name = "SnowySlopes.png 2"
|
||||||
|
2/texture = ExtResource( 1 )
|
||||||
|
2/tex_offset = Vector2( 0, 0 )
|
||||||
|
2/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
2/region = Rect2( 0, 288, 48, 48 )
|
||||||
|
2/tile_mode = 0
|
||||||
|
2/occluder_offset = Vector2( 0, 0 )
|
||||||
|
2/navigation_offset = Vector2( 0, 0 )
|
||||||
|
2/shape_offset = Vector2( 0, 0 )
|
||||||
|
2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
2/shape_one_way = false
|
||||||
|
2/shape_one_way_margin = 0.0
|
||||||
|
2/shapes = [ ]
|
||||||
|
2/z_index = 0
|
||||||
|
3/name = "SnowySlopes.png 3"
|
||||||
|
3/texture = ExtResource( 1 )
|
||||||
|
3/tex_offset = Vector2( 0, 0 )
|
||||||
|
3/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
3/region = Rect2( 144, 240, 48, 48 )
|
||||||
|
3/tile_mode = 0
|
||||||
|
3/occluder_offset = Vector2( 0, 0 )
|
||||||
|
3/navigation_offset = Vector2( 0, 0 )
|
||||||
|
3/shape_offset = Vector2( 0, 0 )
|
||||||
|
3/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
3/shape_one_way = false
|
||||||
|
3/shape_one_way_margin = 0.0
|
||||||
|
3/shapes = [ ]
|
||||||
|
3/z_index = 0
|
||||||
|
4/name = "SnowySlopes.png 4"
|
||||||
|
4/texture = ExtResource( 1 )
|
||||||
|
4/tex_offset = Vector2( 0, 0 )
|
||||||
|
4/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
4/region = Rect2( 96, 240, 48, 48 )
|
||||||
|
4/tile_mode = 0
|
||||||
|
4/occluder_offset = Vector2( 0, 0 )
|
||||||
|
4/navigation_offset = Vector2( 0, 0 )
|
||||||
|
4/shape_offset = Vector2( 0, 0 )
|
||||||
|
4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
4/shape_one_way = false
|
||||||
|
4/shape_one_way_margin = 0.0
|
||||||
|
4/shapes = [ ]
|
||||||
|
4/z_index = 0
|
||||||
|
5/name = "SnowySlopes.png 5"
|
||||||
|
5/texture = ExtResource( 1 )
|
||||||
|
5/tex_offset = Vector2( 0, 0 )
|
||||||
|
5/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
5/region = Rect2( 48, 288, 48, 48 )
|
||||||
|
5/tile_mode = 0
|
||||||
|
5/occluder_offset = Vector2( 0, 0 )
|
||||||
|
5/navigation_offset = Vector2( 0, 0 )
|
||||||
|
5/shape_offset = Vector2( 0, 0 )
|
||||||
|
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
5/shape_one_way = false
|
||||||
|
5/shape_one_way_margin = 0.0
|
||||||
|
5/shapes = [ ]
|
||||||
|
5/z_index = 0
|
||||||
|
6/name = "SnowySlopes.png 6"
|
||||||
|
6/texture = ExtResource( 1 )
|
||||||
|
6/tex_offset = Vector2( 0, 0 )
|
||||||
|
6/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
6/region = Rect2( 48, 240, 48, 48 )
|
||||||
|
6/tile_mode = 0
|
||||||
|
6/occluder_offset = Vector2( 0, 0 )
|
||||||
|
6/navigation_offset = Vector2( 0, 0 )
|
||||||
|
6/shape_offset = Vector2( 0, 0 )
|
||||||
|
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
6/shape_one_way = false
|
||||||
|
6/shape_one_way_margin = 0.0
|
||||||
|
6/shapes = [ ]
|
||||||
|
6/z_index = 0
|
||||||
|
7/name = "SnowySlopes.png 7"
|
||||||
|
7/texture = ExtResource( 1 )
|
||||||
|
7/tex_offset = Vector2( 0, 0 )
|
||||||
|
7/modulate = Color( 1, 1, 1, 1 )
|
||||||
|
7/region = Rect2( 96, 288, 48, 48 )
|
||||||
|
7/tile_mode = 0
|
||||||
|
7/occluder_offset = Vector2( 0, 0 )
|
||||||
|
7/navigation_offset = Vector2( 0, 0 )
|
||||||
|
7/shape_offset = Vector2( 0, 0 )
|
||||||
|
7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||||
|
7/shape_one_way = false
|
||||||
|
7/shape_one_way_margin = 0.0
|
||||||
|
7/shapes = [ ]
|
||||||
|
7/z_index = 0
|
Loading…
Reference in New Issue