Przeglądaj źródła

Initial commit of the Vehicle demo project.

master
Bryan Miller 3 lat temu
commit
3ea7ce536c
Nie znaleziono w bazie danych klucza dla tego podpisu
14 zmienionych plików z 1485 dodań i 0 usunięć
  1. +2
    -0
      .gitignore
  2. BIN
      Assets/Graphics/Car-Yellow.png
  3. +34
    -0
      Assets/Graphics/Car-Yellow.png.import
  4. BIN
      Assets/Graphics/tilesheet.png
  5. +34
    -0
      Assets/Graphics/tilesheet.png.import
  6. +120
    -0
      Objects/PlayerCTRL/PlayerCTRL.gd
  7. +12
    -0
      Objects/PlayerCTRL/PlayerCTRL.tscn
  8. +170
    -0
      Objects/Vehicle/Vehicle.gd
  9. +20
    -0
      Objects/Vehicle/Vehicle.tscn
  10. +980
    -0
      World.tscn
  11. +7
    -0
      default_env.tres
  12. BIN
      icon.png
  13. +34
    -0
      icon.png.import
  14. +72
    -0
      project.godot

+ 2
- 0
.gitignore Wyświetl plik

@@ -0,0 +1,2 @@
.import/*


BIN
Assets/Graphics/Car-Yellow.png Wyświetl plik

Before After
Width: 32  |  Height: 64  |  Size: 13KB

+ 34
- 0
Assets/Graphics/Car-Yellow.png.import Wyświetl plik

@@ -0,0 +1,34 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/Car-Yellow.png-8e71f69cf73776334e7ec2f90d128c1e.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://Assets/Graphics/Car-Yellow.png"
dest_files=[ "res://.import/Car-Yellow.png-8e71f69cf73776334e7ec2f90d128c1e.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=true
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
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
Assets/Graphics/tilesheet.png Wyświetl plik

Before After
Width: 576  |  Height: 384  |  Size: 26KB

+ 34
- 0
Assets/Graphics/tilesheet.png.import Wyświetl plik

@@ -0,0 +1,34 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/tilesheet.png-18d042cfc88722e4f5cb75be4cbc7606.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://Assets/Graphics/tilesheet.png"
dest_files=[ "res://.import/tilesheet.png-18d042cfc88722e4f5cb75be4cbc7606.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
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

+ 120
- 0
Objects/PlayerCTRL/PlayerCTRL.gd Wyświetl plik

@@ -0,0 +1,120 @@
class_name PlayerCTRL
extends Node

const MAX_THROTTLE_TIME = 0.25
const MAX_BREAKING_TIME = 0.25
const MAX_STEERING_TIME = 0.25


var throttle = 0.0
var throttle_active = false
var breaking = 0.0
var breaking_active = false
var steering = 0.0
var steering_left = 0
var steering_right = 0
var steering_state = 0
var rev_tog_down = false

var parent : Vehicle = null

onready var tw_throttle = $Tween_Throttle
onready var tw_breaking = $Tween_Breaking
onready var tw_steering = $Tween_Steering

func _ready():
var pnode = get_parent()
if pnode is Vehicle:
parent = pnode
else:
print("ERROR: Player Controller not attached to a vehicle object.")

func _time_to_target(cur : float, targ : float, size : float, time : float) -> float:
var dist = abs(targ - cur)
return time * (dist / size)

func _set_tween(enable : bool, prop : String, active : bool, cval : float, max_time : float, tween : Tween) -> bool:
var process = false
var time = 0.0
var target = 0.0
if enable != active:
active = enable
process = true
if enable:
target = 1.0
time = _time_to_target(cval, target, 1.0, max_time)
if process:
tween.remove_all()
tween.interpolate_property(self, prop, cval, target, time, Tween.TRANS_LINEAR, Tween.EASE_IN_OUT)
tween.start()
return active

func _throttle(enable : bool) -> void:
throttle_active = _set_tween(enable, "throttle", throttle_active, throttle, MAX_THROTTLE_TIME, tw_throttle)

func _break(enable : bool) -> void:
breaking_active = _set_tween(enable, "breaking", breaking_active, breaking, MAX_BREAKING_TIME, tw_breaking)

func _steer(dir) -> void:
if dir != steering_state:
steering_state = dir
var time = 0.0
var target = 0.0
match(steering_state):
1: # right
target = 1
time = _time_to_target(steering, target, 2, MAX_STEERING_TIME*2)
-1: # left
target = -1
time = _time_to_target(steering, target, 2, MAX_STEERING_TIME*2)
0: # center
time = _time_to_target(steering, target, 1, MAX_STEERING_TIME)
tw_steering.remove_all()
tw_steering.interpolate_property(self, "steering", steering, target, time, Tween.TRANS_LINEAR, Tween.EASE_IN_OUT)
tw_steering.start()

func _unhandled_input(event):
var time = 0.0
if event.is_action_pressed("accel"):
_throttle(true)
if event.is_action_released("accel"):
_throttle(false)
if event.is_action_pressed("break"):
_break(true)
if event.is_action_released("break"):
_break(false)
if event.is_action_pressed("reverse_toggle"):
if not rev_tog_down:
parent.toggle_reverse()
rev_tog_down = true
if event.is_action_released("reverse_toggle"):
rev_tog_down = false
var handle_steering = false
if event.is_action("turn_left"):
if event.is_action_pressed("turn_left"):
steering_left = -1
elif event.is_action_released("turn_left"):
steering_left = 0
handle_steering = true
if event.is_action("turn_right"):
if event.is_action_pressed("turn_right"):
steering_right = 1
elif event.is_action_released("turn_right"):
steering_right = 0
handle_steering = true
if handle_steering:
_steer(steering_right + steering_left)

func _process(delta):
if parent:
parent.set_throttle(throttle)
#parent.breaking(breaking)
parent.set_steering(steering)





+ 12
- 0
Objects/PlayerCTRL/PlayerCTRL.tscn Wyświetl plik

@@ -0,0 +1,12 @@
[gd_scene load_steps=2 format=2]

[ext_resource path="res://Objects/PlayerCTRL/PlayerCTRL.gd" type="Script" id=1]

[node name="PlayerCTRL" type="Node2D"]
script = ExtResource( 1 )

[node name="Tween_Throttle" type="Tween" parent="."]

[node name="Tween_Breaking" type="Tween" parent="."]

[node name="Tween_Steering" type="Tween" parent="."]

+ 170
- 0
Objects/Vehicle/Vehicle.gd Wyświetl plik

@@ -0,0 +1,170 @@
# Code based on...
# https://kidscancode.org/godot_recipes/2d/car_steering/

tool
extends KinematicBody2D
class_name Vehicle

export var camera_enabled : bool = false setget _set_camera_enabled
export var forward_axel : float = 10 setget _set_forward_axel
export var rear_axel : float = 10 setget _set_rear_axel
export (float, 0.1, 360.0, 0.1) var max_steering_angle = 15 setget _set_max_steering_angle
export var max_engine_power : float = 800 setget _set_max_engine_power
export (float, 0.0, 1.0, 0.001) var reverse_engine_multiplier = 0.85
export var max_breaking_power : float = 450 setget _set_max_breaking_power
export (float, 0.01, 1.0, 0.01) var friction = 0.9
export (float, 0.001, 1.0, 0.0005) var drag = 0.0015

var velocity = Vector2.ZERO
var acceleration = Vector2.ZERO

var steering_angle = 0.0
var engine_power = 0.0
var breaking_power = 0.0
var reverse = false

onready var camera = $Camera2D

# -----------------------------------------------------------------------------
# Setter/Getter Methods
# -----------------------------------------------------------------------------

func _set_camera_enabled(e : bool) -> void:
camera_enabled = e
if camera:
camera.current = e

func _set_forward_axel(a : float) -> void:
if a > 0:
forward_axel = a

func _set_rear_axel(a : float) -> void:
if a > 0:
rear_axel = a

func _set_max_steering_angle(a : float) -> void:
max_steering_angle = a
if steering_angle > a:
steering_angle = a
elif steering_angle < -a:
steering_angle = -a

func _set_max_engine_power(p : float) -> void:
if p > 0.0:
max_engine_power = p
if engine_power > p:
engine_power = p

func _set_max_breaking_power(p : float) -> void:
if p > 0.0:
max_breaking_power = p
if breaking_power > p:
breaking_power = p

# -----------------------------------------------------------------------------
# Godot Override Methods
# -----------------------------------------------------------------------------

func _ready():
camera.current = camera_enabled
if Engine.editor_hint:
$Sprite.show_behind_parent = true
$Collision.visible = false

func _draw():
if Engine.editor_hint:
var wheel_base_color = Color(1.0, 0.5, 0.0)
draw_line(
Vector2(0, -forward_axel),
Vector2(0, rear_axel),
wheel_base_color,
2
)

func _process(delta):
update()

func _physics_process(delta):
if Engine.editor_hint:
return

# TODO: Reverse engine_power sign when toggling reverse!
acceleration = -transform.y * engine_power
_apply_friction()
print(acceleration)
_calculate_heading(delta)
if reverse:
velocity += -acceleration * delta
else:
velocity += acceleration * delta
velocity = move_and_slide(velocity)

# -----------------------------------------------------------------------------
# Private "Helper" Methods
# -----------------------------------------------------------------------------

func _calculate_heading(delta : float) -> void:
var rear_wheel = position + transform.y * rear_axel
var fore_wheel = position - transform.y * forward_axel
rear_wheel += velocity * delta
fore_wheel += velocity.rotated(deg2rad(steering_angle)) * delta
var heading = (fore_wheel - rear_wheel).normalized()
var d = heading.dot(velocity.normalized())
if d > 0:
velocity = heading * velocity.length()
if d < 0:
velocity = -heading * velocity.length()
#velocity = heading * velocity.length()
rotation = (heading.angle() + deg2rad(90))

func _apply_friction() -> void:
var speed = velocity.length()
if velocity.length() < 5:
velocity = Vector2.ZERO
speed = 0
var force_friction = (-friction) * velocity
var force_drag = (-drag) * speed * velocity
acceleration += force_friction + force_drag

# -----------------------------------------------------------------------------
# Public Methods
# -----------------------------------------------------------------------------

func get_wheel_base() -> float:
return forward_axel + rear_axel

func get_steering_angle() -> float:
return steering_angle

func set_steering(v : float) -> void:
v = (clamp(v, -1.0, 1.0) + 1) / 2.0
steering_angle = (max_steering_angle * 2 * v) - max_steering_angle

func is_reverse() -> bool:
return reverse

func set_reverse(r : bool) -> void:
reverse = r

func toggle_reverse() -> bool:
reverse = not reverse
return reverse

func get_engine_power() -> float:
return engine_power

func set_throttle(v : float) -> void:
v = clamp(v, 0.0, 1.0)
var epm = 1.0
if reverse:
epm = reverse_engine_multiplier
engine_power = max_engine_power * epm * v
# -----------------------------------------------------------------------------
# Event Handlers
# -----------------------------------------------------------------------------



+ 20
- 0
Objects/Vehicle/Vehicle.tscn Wyświetl plik

@@ -0,0 +1,20 @@
[gd_scene load_steps=4 format=2]

[ext_resource path="res://Assets/Graphics/Car-Yellow.png" type="Texture" id=1]
[ext_resource path="res://Objects/Vehicle/Vehicle.gd" type="Script" id=2]

[sub_resource type="CapsuleShape2D" id=1]
radius = 14.0
height = 32.0

[node name="Vehicle" type="KinematicBody2D"]
script = ExtResource( 2 )

[node name="Collision" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )

[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )

[node name="Camera2D" type="Camera2D" parent="."]
smoothing_enabled = true

+ 980
- 0
World.tscn Wyświetl plik

@@ -0,0 +1,980 @@
[gd_scene load_steps=109 format=2]

[ext_resource path="res://Objects/Vehicle/Vehicle.tscn" type="PackedScene" id=1]
[ext_resource path="res://Objects/PlayerCTRL/PlayerCTRL.tscn" type="PackedScene" id=2]
[ext_resource path="res://Assets/Graphics/tilesheet.png" type="Texture" id=3]

[sub_resource type="ConvexPolygonShape2D" id=2]
points = PoolVector2Array( 8, 0, 64, 0, 64, 8, 8, 8 )

[sub_resource type="ConvexPolygonShape2D" id=3]
points = PoolVector2Array( 8, 64, 0, 64, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=4]
points = PoolVector2Array( 0, 0, 56, 0, 56, 8, 0, 8 )

[sub_resource type="ConvexPolygonShape2D" id=5]
points = PoolVector2Array( 56, 0, 64, 0, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=6]
points = PoolVector2Array( 56, 0, 64, 0, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=7]
points = PoolVector2Array( 56, 64, 0, 64, 0, 56, 56, 56 )

[sub_resource type="ConvexPolygonShape2D" id=8]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=9]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=10]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=11]
points = PoolVector2Array( 8, 64, 0, 64, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=12]
points = PoolVector2Array( 8, 56, 64, 56, 64, 64, 8, 64 )

[sub_resource type="ConvexPolygonShape2D" id=13]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=14]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=15]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=16]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=17]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=18]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=19]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=20]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=21]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=22]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=23]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=24]
points = PoolVector2Array( 0, 0, 8, 0, 8, 8, 0, 8 )

[sub_resource type="ConvexPolygonShape2D" id=25]
points = PoolVector2Array( 0, 56, 8, 56, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=26]
points = PoolVector2Array( 56, 56, 64, 56, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=27]
points = PoolVector2Array( 56, 0, 64, 0, 64, 8, 56, 8 )

[sub_resource type="ConvexPolygonShape2D" id=28]
points = PoolVector2Array( 56, 56, 64, 56, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=29]
points = PoolVector2Array( 0, 56, 8, 56, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=30]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=31]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=32]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=33]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=34]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=35]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=36]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=37]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=38]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=39]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=40]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=41]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=42]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=43]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=44]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=45]
points = PoolVector2Array( 56, 56, 64, 56, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=46]
points = PoolVector2Array( 0, 0, 8, 0, 8, 8, 0, 8 )

[sub_resource type="ConvexPolygonShape2D" id=47]
points = PoolVector2Array( 0, 56, 8, 56, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=48]
points = PoolVector2Array( 8, 64, 0, 64, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=49]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=50]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=51]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=52]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=53]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=54]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=55]
points = PoolVector2Array( 0, 56, 8, 56, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=56]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=57]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=58]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=59]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=60]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=61]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=62]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=63]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=64]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=65]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=66]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=67]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=68]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=69]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=70]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=71]
points = PoolVector2Array( 64, 8, 0, 8, 0, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=72]
points = PoolVector2Array( 0, 8, 8, 8, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=73]
points = PoolVector2Array( 56, 8, 64, 8, 64, 64, 56, 64 )

[sub_resource type="ConvexPolygonShape2D" id=74]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=75]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=76]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=77]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=78]
points = PoolVector2Array( 56, 8, 0, 8, 0, 0, 56, 0 )

[sub_resource type="ConvexPolygonShape2D" id=79]
points = PoolVector2Array( 56, 64, 0, 64, 0, 56, 56, 56 )

[sub_resource type="ConvexPolygonShape2D" id=80]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=81]
points = PoolVector2Array( 8, 56, 0, 56, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=82]
points = PoolVector2Array( 64, 56, 56, 56, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=83]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=84]
points = PoolVector2Array( 8, 0, 64, 0, 64, 8, 8, 8 )

[sub_resource type="ConvexPolygonShape2D" id=85]
points = PoolVector2Array( 8, 56, 64, 56, 64, 64, 8, 64 )

[sub_resource type="ConvexPolygonShape2D" id=86]
points = PoolVector2Array( 8, 64, 0, 64, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=87]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=88]
points = PoolVector2Array( 8, 0, 56, 0, 56, 8, 8, 8 )

[sub_resource type="ConvexPolygonShape2D" id=89]
points = PoolVector2Array( 8, 56, 56, 56, 56, 64, 8, 64 )

[sub_resource type="ConvexPolygonShape2D" id=90]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=91]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=92]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=93]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=94]
points = PoolVector2Array( 8, 8, 0, 8, 0, 0, 8, 0 )

[sub_resource type="ConvexPolygonShape2D" id=95]
points = PoolVector2Array( 8, 64, 0, 64, 0, 56, 8, 56 )

[sub_resource type="ConvexPolygonShape2D" id=96]
points = PoolVector2Array( 64, 8, 56, 8, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=97]
points = PoolVector2Array( 64, 64, 56, 64, 56, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=98]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=99]
points = PoolVector2Array( 8, 56, 64, 56, 64, 64, 8, 64 )

[sub_resource type="ConvexPolygonShape2D" id=100]
points = PoolVector2Array( 64, 64, 0, 64, 0, 56, 64, 56 )

[sub_resource type="ConvexPolygonShape2D" id=101]
points = PoolVector2Array( 64, 56, 56, 56, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=102]
points = PoolVector2Array( 64, 64, 56, 64, 56, 0, 64, 0 )

[sub_resource type="ConvexPolygonShape2D" id=103]
points = PoolVector2Array( 56, 8, 0, 8, 0, 0, 56, 0 )

[sub_resource type="ConvexPolygonShape2D" id=104]
points = PoolVector2Array( 0, 0, 8, 0, 8, 64, 0, 64 )

[sub_resource type="ConvexPolygonShape2D" id=105]
points = PoolVector2Array( 8, 0, 64, 0, 64, 8, 8, 8 )

[sub_resource type="TileSet" id=1]
0/name = "OrangeTiles"
0/texture = ExtResource( 3 )
0/tex_offset = Vector2( 0, 0 )
0/modulate = Color( 1, 1, 1, 1 )
0/region = Rect2( 0, 0, 576, 384 )
0/tile_mode = 1
0/autotile/bitmask_mode = 1
0/autotile/bitmask_flags = [ Vector2( 0, 0 ), 176, Vector2( 0, 1 ), 50, Vector2( 0, 2 ), 255, Vector2( 0, 3 ), 507, Vector2( 0, 4 ), 442, Vector2( 0, 5 ), 190, Vector2( 1, 0 ), 152, Vector2( 1, 1 ), 26, Vector2( 1, 2 ), 447, Vector2( 1, 3 ), 510, Vector2( 1, 4 ), 250, Vector2( 1, 5 ), 187, Vector2( 2, 0 ), 56, Vector2( 2, 1 ), 146, Vector2( 2, 2 ), 191, Vector2( 2, 3 ), 251, Vector2( 2, 4 ), 434, Vector2( 2, 5 ), 182, Vector2( 3, 0 ), 184, Vector2( 3, 1 ), 178, Vector2( 3, 2 ), 442, Vector2( 3, 3 ), 446, Vector2( 3, 4 ), 218, Vector2( 3, 5 ), 155, Vector2( 4, 0 ), 58, Vector2( 4, 1 ), 154, Vector2( 4, 2 ), 438, Vector2( 4, 3 ), 504, Vector2( 4, 4 ), 440, Vector2( 4, 5 ), 62, Vector2( 5, 0 ), 24, Vector2( 5, 1 ), 144, Vector2( 5, 2 ), 219, Vector2( 5, 3 ), 63, Vector2( 5, 4 ), 248, Vector2( 5, 5 ), 59, Vector2( 6, 0 ), 18, Vector2( 6, 1 ), 48, Vector2( 6, 2 ), 511, Vector2( 6, 3 ), 16, Vector2( 6, 4 ), 443, Vector2( 6, 5 ), 254, Vector2( 7, 0 ), 432, Vector2( 7, 1 ), 54, Vector2( 7, 2 ), 186, Vector2( 8, 0 ), 216, Vector2( 8, 1 ), 27 ]
0/autotile/icon_coordinate = Vector2( 6, 3 )
0/autotile/tile_size = Vector2( 64, 64 )
0/autotile/spacing = 0
0/autotile/occluder_map = [ ]
0/autotile/navpoly_map = [ ]
0/autotile/priority_map = [ ]
0/autotile/z_index_map = [ ]
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 = SubResource( 2 )
0/shape_one_way = false
0/shape_one_way_margin = 1.0
0/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 2 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 3 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 4 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 5 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 6 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 7 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 8 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 9 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 10 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 11 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 12 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 13 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 14 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 15 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 16 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 17 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 18 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 19 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 20 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 21 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 22 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 23 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 24 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 25 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 0, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 26 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 27 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 28 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 1, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 29 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 30 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 31 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 32 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 33 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 34 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 35 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 36 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 37 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 38 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 39 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 40 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 41 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 42 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 43 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 44 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 45 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 46 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 47 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 48 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 49 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 50 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 51 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 52 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 2, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 53 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 54 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 3, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 55 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 56 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 57 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 58 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 59 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 60 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 61 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 62 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 63 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 64 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 65 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 66 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 67 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 68 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 69 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 70 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 71 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 72 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 73 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 74 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 75 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 4, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 76 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 77 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 78 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 5, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 79 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 80 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 81 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 82 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 83 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 84 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 85 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 86 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 87 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 88 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 3 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 89 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 90 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 4 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 91 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 92 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 6, 5 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 93 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 94 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 95 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 96 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 2 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 97 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 98 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 99 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 8, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 100 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 8, 1 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 101 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 8, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 102 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 8, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 103 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 104 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, {
"autotile_coord": Vector2( 7, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 105 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
0/z_index = 0

[node name="World" type="Node2D"]

[node name="TileMap" type="TileMap" parent="."]
tile_set = SubResource( 1 )
format = 1
tile_data = PoolIntArray( -65526, 0, 7, -65525, 0, 196612, -65524, 0, 196612, -65523, 0, 196612, -65522, 0, 196612, -65521, 0, 196612, -65520, 0, 196612, -65519, 0, 196612, -65518, 0, 196612, -65517, 0, 8, 8, 0, 7, 9, 0, 196612, 10, 0, 196609, 11, 0, 131078, 12, 0, 131078, 13, 0, 131078, 14, 0, 131078, 15, 0, 131078, 16, 0, 131078, 17, 0, 131078, 18, 0, 131078, 19, 0, 196608, 20, 0, 196612, 21, 0, 8, 65544, 0, 131076, 65545, 0, 131078, 65546, 0, 131072, 65547, 0, 196613, 65548, 0, 196613, 65549, 0, 196613, 65550, 0, 196613, 65551, 0, 196613, 65552, 0, 196613, 65553, 0, 196613, 65554, 0, 196613, 65555, 0, 131073, 65556, 0, 131078, 65557, 0, 131077, 131080, 0, 131076, 131081, 0, 131072, 131082, 0, 65544, 131091, 0, 65543, 131092, 0, 131073, 131093, 0, 131077, 196616, 0, 131076, 196617, 0, 131077, 196620, 0, 7, 196621, 0, 196612, 196622, 0, 196612, 196623, 0, 196612, 196624, 0, 196612, 196625, 0, 8, 196628, 0, 131076, 196629, 0, 131077, 262152, 0, 131076, 262153, 0, 196608, 262154, 0, 8, 262156, 0, 131076, 262157, 0, 131078, 262158, 0, 131078, 262159, 0, 131078, 262160, 0, 131078, 262161, 0, 131077, 262163, 0, 7, 262164, 0, 196609, 262165, 0, 131077, 327688, 0, 131076, 327689, 0, 131078, 327690, 0, 196608, 327691, 0, 196612, 327692, 0, 196609, 327693, 0, 131078, 327694, 0, 131078, 327695, 0, 131078, 327696, 0, 131078, 327697, 0, 196608, 327698, 0, 196612, 327699, 0, 196609, 327700, 0, 131078, 327701, 0, 131077, 393224, 0, 131076, 393225, 0, 131078, 393226, 0, 131078, 393227, 0, 131078, 393228, 0, 131078, 393229, 0, 131078, 393230, 0, 131078, 393231, 0, 131078, 393232, 0, 131078, 393233, 0, 131078, 393234, 0, 131078, 393235, 0, 131078, 393236, 0, 131078, 393237, 0, 131077, 458753, 0, 7, 458754, 0, 196612, 458755, 0, 196612, 458756, 0, 196612, 458757, 0, 196612, 458758, 0, 196612, 458759, 0, 196612, 458760, 0, 196609, 458761, 0, 131078, 458762, 0, 131078, 458763, 0, 131078, 458764, 0, 131078, 458765, 0, 131078, 458766, 0, 131078, 458767, 0, 131078, 458768, 0, 131078, 458769, 0, 131078, 458770, 0, 131078, 458771, 0, 131078, 458772, 0, 131072, 458773, 0, 65544, 524289, 0, 131076, 524290, 0, 131078, 524291, 0, 131078, 524292, 0, 131078, 524293, 0, 131078, 524294, 0, 131078, 524295, 0, 131078, 524296, 0, 131078, 524297, 0, 131078, 524298, 0, 131078, 524299, 0, 131078, 524300, 0, 131078, 524301, 0, 131078, 524302, 0, 131078, 524303, 0, 131078, 524304, 0, 131078, 524305, 0, 131078, 524306, 0, 131072, 524307, 0, 196613, 524308, 0, 65544, 589825, 0, 131076, 589826, 0, 131078, 589827, 0, 131078, 589828, 0, 131078, 589829, 0, 131078, 589830, 0, 131078, 589831, 0, 131078, 589832, 0, 131078, 589833, 0, 131078, 589834, 0, 131078, 589835, 0, 131078, 589836, 0, 131078, 589837, 0, 131078, 589838, 0, 131078, 589839, 0, 131078, 589840, 0, 131078, 589841, 0, 131078, 589842, 0, 131077, 655361, 0, 131076, 655362, 0, 131078, 655363, 0, 131078, 655364, 0, 131078, 655365, 0, 131078, 655366, 0, 131078, 655367, 0, 131078, 655368, 0, 131078, 655369, 0, 131078, 655370, 0, 131078, 655371, 0, 131078, 655372, 0, 131078, 655373, 0, 131078, 655374, 0, 131078, 655375, 0, 131078, 655376, 0, 131078, 655377, 0, 131078, 655378, 0, 196608, 655379, 0, 8, 720897, 0, 131076, 720898, 0, 131078, 720899, 0, 131078, 720900, 0, 131078, 720901, 0, 131078, 720902, 0, 131078, 720903, 0, 131078, 720904, 0, 131078, 720905, 0, 131078, 720906, 0, 131078, 720907, 0, 131078, 720908, 0, 131078, 720909, 0, 131078, 720910, 0, 131078, 720911, 0, 131078, 720912, 0, 131078, 720913, 0, 131078, 720914, 0, 131078, 720915, 0, 196608, 720916, 0, 8, 786433, 0, 131076, 786434, 0, 131078, 786435, 0, 131078, 786436, 0, 131078, 786437, 0, 131078, 786438, 0, 131078, 786439, 0, 131078, 786440, 0, 131078, 786441, 0, 131078, 786442, 0, 131078, 786443, 0, 131078, 786444, 0, 131078, 786445, 0, 131078, 786446, 0, 131078, 786447, 0, 131078, 786448, 0, 131078, 786449, 0, 131078, 786450, 0, 131078, 786451, 0, 131078, 786452, 0, 131077, 851969, 0, 65543, 851970, 0, 196613, 851971, 0, 196613, 851972, 0, 196613, 851973, 0, 196613, 851974, 0, 196613, 851975, 0, 196613, 851976, 0, 196613, 851977, 0, 196613, 851978, 0, 196613, 851979, 0, 196613, 851980, 0, 196613, 851981, 0, 196613, 851982, 0, 196613, 851983, 0, 196613, 851984, 0, 196613, 851985, 0, 196613, 851986, 0, 196613, 851987, 0, 196613, 851988, 0, 65544 )

[node name="Vehicle" parent="." instance=ExtResource( 1 )]
position = Vector2( 946.288, 469.696 )
camera_enabled = true

[node name="PlayerCTRL" parent="Vehicle" instance=ExtResource( 2 )]

+ 7
- 0
default_env.tres Wyświetl plik

@@ -0,0 +1,7 @@
[gd_resource type="Environment" load_steps=2 format=2]

[sub_resource type="ProceduralSky" id=1]

[resource]
background_mode = 2
background_sky = SubResource( 1 )

BIN
icon.png Wyświetl plik

Before After
Width: 64  |  Height: 64  |  Size: 3.2KB

+ 34
- 0
icon.png.import Wyświetl plik

@@ -0,0 +1,34 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://icon.png"
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.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=true
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
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

+ 72
- 0
project.godot Wyświetl plik

@@ -0,0 +1,72 @@
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters

config_version=4

_global_script_classes=[ {
"base": "Node",
"class": "PlayerCTRL",
"language": "GDScript",
"path": "res://Objects/PlayerCTRL/PlayerCTRL.gd"
}, {
"base": "KinematicBody2D",
"class": "Vehicle",
"language": "GDScript",
"path": "res://Objects/Vehicle/Vehicle.gd"
} ]
_global_script_class_icons={
"PlayerCTRL": "",
"Vehicle": ""
}

[application]

config/name="Vehicle"
run/main_scene="res://World.tscn"
config/icon="res://icon.png"

[display]

window/size/width=1920
window/size/height=1080

[input]

accel={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
]
}
break={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
]
}
turn_left={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
]
}
turn_right={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
]
}
reverse_toggle={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":69,"unicode":0,"echo":false,"script":null)
]
}

[physics]

common/enable_pause_aware_picking=true

[rendering]

environment/default_environment="res://default_env.tres"

Ładowanie…
Anuluj
Zapisz