Merge remote-tracking branch 'origin/main' into main
@ -6,7 +6,9 @@
|
||||
[sub_resource type="CircleShape2D" id=1]
|
||||
radius = 25.16
|
||||
|
||||
[node name="DropOffPoint" type="Node2D"]
|
||||
[node name="DropOffPoint" type="Node2D" groups=[
|
||||
"DropOffPoint",
|
||||
]]
|
||||
script = ExtResource( 2 )
|
||||
|
||||
[node name="Area2D" type="Area2D" parent="."]
|
||||
|
16
Guest.gd
@ -1,8 +1,8 @@
|
||||
extends KinematicBody2D
|
||||
extends RigidBody2D
|
||||
|
||||
onready var pickUpArea = $PickUpArea
|
||||
export var guestName = "Dieter"
|
||||
export var PICKUPTRESHOLD = 5
|
||||
export var PICKUPTRESHOLD = 80
|
||||
export var destinationColor = Color.yellow
|
||||
signal picked_up(color,name)
|
||||
signal dropped_off_success
|
||||
@ -22,11 +22,15 @@ var colorList = [
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
|
||||
#print(get_tree().get_root().get_node("Playa"))
|
||||
#connect('picked_up',get_tree().get_nodes_in_group("Player")[0], '_on_Guest_picked_up')
|
||||
|
||||
rng.randomize()
|
||||
var n = rng.randi_range(0,4)
|
||||
print(n)
|
||||
#print(n)
|
||||
destinationColor = colorList[n]
|
||||
print(destinationColor)
|
||||
#print(destinationColor)
|
||||
sprite.modulate = destinationColor
|
||||
|
||||
|
||||
@ -36,8 +40,8 @@ func _ready():
|
||||
func _on_PickUpArea_body_entered(body):
|
||||
print(body.name)
|
||||
if body.name == "Playa":
|
||||
print(body.velocity)
|
||||
if body.velocity.x >= PICKUPTRESHOLD and body.velocity.y >= PICKUPTRESHOLD:
|
||||
print(body.velocity.length())
|
||||
if body.velocity.length() <= PICKUPTRESHOLD:
|
||||
emit_signal("picked_up",destinationColor,guestName)
|
||||
# start pickup process
|
||||
|
||||
|
10
Guest.tscn
@ -13,7 +13,10 @@ height = 3.32129
|
||||
[sub_resource type="CircleShape2D" id=3]
|
||||
radius = 24.5545
|
||||
|
||||
[node name="Guest" type="KinematicBody2D"]
|
||||
[node name="Guest" type="RigidBody2D" groups=[
|
||||
"Guest",
|
||||
]]
|
||||
mode = 2
|
||||
script = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_horizontal_guides_": [ ]
|
||||
@ -30,7 +33,10 @@ shape = SubResource( 1 )
|
||||
texture = ExtResource( 1 )
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
shape = SubResource( 2 )
|
||||
shape = SubResource( 1 )
|
||||
|
||||
[node name="Joint" type="PinJoint2D" parent="CollisionShape2D"]
|
||||
node_a = NodePath("../..")
|
||||
|
||||
[node name="PickUpArea" type="Area2D" parent="."]
|
||||
|
||||
|
25
Playa.gd
@ -5,11 +5,36 @@ export var MAX_SPEED = 150
|
||||
export var FRICTION = 50
|
||||
|
||||
var velocity = Vector2.ZERO
|
||||
var last_in_line
|
||||
|
||||
var guests = []
|
||||
|
||||
func _ready():
|
||||
last_in_line = $Anchor
|
||||
pass # Replace with function body.
|
||||
|
||||
func add_Guest_to_Line(parent,guest):
|
||||
guests.append(guest)
|
||||
var joint = parent.get_node("CollisionShape2D/Joint")
|
||||
joint.add_child(guest)
|
||||
joint.node_a = parent.get_path()
|
||||
joint.node_b = guest.get_path()
|
||||
return guest
|
||||
|
||||
func _on_PickupCheckArea_area_entered(area):
|
||||
|
||||
if area.get_parent().is_in_group("DropOffPoint"):
|
||||
print("It's a DOP")
|
||||
#drop all guests after first guest.color == DOP.color, also vanish all guests.color == DOP.color
|
||||
pass
|
||||
if area.get_parent().is_in_group("Guest"):
|
||||
print("It's a Guest")
|
||||
last_in_line = add_Guest_to_Line(last_in_line,area.get_parent())
|
||||
print(last_in_line)
|
||||
|
||||
print(guests)
|
||||
|
||||
|
||||
|
||||
func _physics_process(delta):
|
||||
var direction = Vector2.UP.rotated(rotation).normalized() #Playerrotation nehmen ist sicherer
|
||||
|
43
Playa.tscn
@ -1,23 +1,46 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://assets/car/Auto.png" type="Texture" id=1]
|
||||
[ext_resource path="res://assets/car/Autoi cut.png" type="Texture" id=1]
|
||||
[ext_resource path="res://Playa.gd" type="Script" id=2]
|
||||
|
||||
[sub_resource type="CapsuleShape2D" id=1]
|
||||
radius = 33.6545
|
||||
height = 72.4629
|
||||
radius = 13.0017
|
||||
height = 19.9256
|
||||
|
||||
[node name="Playa" type="KinematicBody2D"]
|
||||
[sub_resource type="CapsuleShape2D" id=2]
|
||||
radius = 12.9279
|
||||
height = 25.8183
|
||||
|
||||
[sub_resource type="CapsuleShape2D" id=3]
|
||||
radius = 5.0
|
||||
height = 4.0
|
||||
|
||||
[node name="Playa" type="KinematicBody2D" groups=[
|
||||
"Player",
|
||||
]]
|
||||
script = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_group_": true
|
||||
}
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="."]
|
||||
position = Vector2( 5.25562, -20.8122 )
|
||||
rotation = 3.14159
|
||||
scale = Vector2( 2, 2 )
|
||||
scale = Vector2( 0.1, 0.1 )
|
||||
texture = ExtResource( 1 )
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
shape = SubResource( 1 )
|
||||
|
||||
[node name="PickupCheckArea" type="Area2D" parent="."]
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="PickupCheckArea"]
|
||||
shape = SubResource( 2 )
|
||||
|
||||
[node name="Anchor" type="Area2D" parent="."]
|
||||
position = Vector2( 0, 25 )
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="Anchor"]
|
||||
shape = SubResource( 3 )
|
||||
|
||||
[node name="Joint" type="PinJoint2D" parent="Anchor/CollisionShape2D"]
|
||||
node_a = NodePath("../../..")
|
||||
softness = 2.0
|
||||
|
||||
[connection signal="area_entered" from="PickupCheckArea" to="." method="_on_PickupCheckArea_area_entered"]
|
||||
|
449
World.tscn
BIN
assets/car/Autoi cut.png
Executable file
After Width: | Height: | Size: 5.0 KiB |
34
assets/car/Autoi cut.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Autoi cut.png-a6106bc4bb0539ec3d599c023984de9e.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/car/Autoi cut.png"
|
||||
dest_files=[ "res://.import/Autoi cut.png-a6106bc4bb0539ec3d599c023984de9e.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
|
BIN
assets/city_tiles/streets/3-Wege 1.png
Executable file
After Width: | Height: | Size: 169 B |
34
assets/city_tiles/streets/3-Wege 1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 1.png-fac4f0fbd2a7a5f82a09f638975b8fcf.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 1.png"
|
||||
dest_files=[ "res://.import/3-Wege 1.png-fac4f0fbd2a7a5f82a09f638975b8fcf.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
|
BIN
assets/city_tiles/streets/3-Wege 10.png
Executable file
After Width: | Height: | Size: 162 B |
34
assets/city_tiles/streets/3-Wege 10.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 10.png-bda9fb09faa98e5dea0f2b3facc340ee.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 10.png"
|
||||
dest_files=[ "res://.import/3-Wege 10.png-bda9fb09faa98e5dea0f2b3facc340ee.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
|
BIN
assets/city_tiles/streets/3-Wege 11.png
Executable file
After Width: | Height: | Size: 190 B |
34
assets/city_tiles/streets/3-Wege 11.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 11.png-eefa97e17f5b82c691fc26c3101ac662.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 11.png"
|
||||
dest_files=[ "res://.import/3-Wege 11.png-eefa97e17f5b82c691fc26c3101ac662.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
|
BIN
assets/city_tiles/streets/3-Wege 12.png
Executable file
After Width: | Height: | Size: 155 B |
34
assets/city_tiles/streets/3-Wege 12.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 12.png-514d6bcfdae79ffe23dbbc487d869529.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 12.png"
|
||||
dest_files=[ "res://.import/3-Wege 12.png-514d6bcfdae79ffe23dbbc487d869529.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
|
BIN
assets/city_tiles/streets/3-Wege 2.png
Executable file
After Width: | Height: | Size: 182 B |
34
assets/city_tiles/streets/3-Wege 2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 2.png-291405c8609dd07c460062830e1b391d.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 2.png"
|
||||
dest_files=[ "res://.import/3-Wege 2.png-291405c8609dd07c460062830e1b391d.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
|
BIN
assets/city_tiles/streets/3-Wege 3.png
Executable file
After Width: | Height: | Size: 201 B |
34
assets/city_tiles/streets/3-Wege 3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 3.png-37096d519d2a74c4d37682df8c29365d.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 3.png"
|
||||
dest_files=[ "res://.import/3-Wege 3.png-37096d519d2a74c4d37682df8c29365d.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
|
BIN
assets/city_tiles/streets/3-Wege 4.png
Executable file
After Width: | Height: | Size: 202 B |
34
assets/city_tiles/streets/3-Wege 4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 4.png-22a5731cb66b9b8dae53e946032042f3.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 4.png"
|
||||
dest_files=[ "res://.import/3-Wege 4.png-22a5731cb66b9b8dae53e946032042f3.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
|
BIN
assets/city_tiles/streets/3-Wege 5.png
Executable file
After Width: | Height: | Size: 188 B |
34
assets/city_tiles/streets/3-Wege 5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 5.png-006be095f5604129690a56abe0be7f2f.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 5.png"
|
||||
dest_files=[ "res://.import/3-Wege 5.png-006be095f5604129690a56abe0be7f2f.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
|
BIN
assets/city_tiles/streets/3-Wege 6.png
Executable file
After Width: | Height: | Size: 175 B |
34
assets/city_tiles/streets/3-Wege 6.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 6.png-fccff8db3001c8184e17bce010d0a021.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 6.png"
|
||||
dest_files=[ "res://.import/3-Wege 6.png-fccff8db3001c8184e17bce010d0a021.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
|
BIN
assets/city_tiles/streets/3-Wege 7.png
Executable file
After Width: | Height: | Size: 171 B |
34
assets/city_tiles/streets/3-Wege 7.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 7.png-b98d5ad671be2481e72de735aff6e333.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 7.png"
|
||||
dest_files=[ "res://.import/3-Wege 7.png-b98d5ad671be2481e72de735aff6e333.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
|
BIN
assets/city_tiles/streets/3-Wege 8.png
Executable file
After Width: | Height: | Size: 202 B |
34
assets/city_tiles/streets/3-Wege 8.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 8.png-0e0d9f3ba79fbfd05ee6e628f723a11d.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 8.png"
|
||||
dest_files=[ "res://.import/3-Wege 8.png-0e0d9f3ba79fbfd05ee6e628f723a11d.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
|
BIN
assets/city_tiles/streets/3-Wege 9.png
Executable file
After Width: | Height: | Size: 179 B |
34
assets/city_tiles/streets/3-Wege 9.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/3-Wege 9.png-78178590f448d08b731244ddfe76b783.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/3-Wege 9.png"
|
||||
dest_files=[ "res://.import/3-Wege 9.png-78178590f448d08b731244ddfe76b783.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
|
BIN
assets/city_tiles/streets/Kreuzung 1.png
Executable file
After Width: | Height: | Size: 170 B |
34
assets/city_tiles/streets/Kreuzung 1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kreuzung 1.png-69d9de894edb2a74dff91a05be77fafd.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kreuzung 1.png"
|
||||
dest_files=[ "res://.import/Kreuzung 1.png-69d9de894edb2a74dff91a05be77fafd.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
|
BIN
assets/city_tiles/streets/Kreuzung 2.png
Executable file
After Width: | Height: | Size: 207 B |
34
assets/city_tiles/streets/Kreuzung 2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kreuzung 2.png-cb2c5da9232400b009c3a28d636a270c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kreuzung 2.png"
|
||||
dest_files=[ "res://.import/Kreuzung 2.png-cb2c5da9232400b009c3a28d636a270c.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
|
BIN
assets/city_tiles/streets/Kurve1.png
Executable file
After Width: | Height: | Size: 183 B |
34
assets/city_tiles/streets/Kurve1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kurve1.png-54909eba52c8dba9bab2c40fc72df398.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kurve1.png"
|
||||
dest_files=[ "res://.import/Kurve1.png-54909eba52c8dba9bab2c40fc72df398.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
|
BIN
assets/city_tiles/streets/Kurve2.png
Executable file
After Width: | Height: | Size: 181 B |
34
assets/city_tiles/streets/Kurve2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kurve2.png-4e24757ee74fb44a8a7882fec85489d5.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kurve2.png"
|
||||
dest_files=[ "res://.import/Kurve2.png-4e24757ee74fb44a8a7882fec85489d5.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
|
BIN
assets/city_tiles/streets/Kurve3.png
Executable file
After Width: | Height: | Size: 171 B |
34
assets/city_tiles/streets/Kurve3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kurve3.png-06359a218ac881bae3b967f0c0083f4a.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kurve3.png"
|
||||
dest_files=[ "res://.import/Kurve3.png-06359a218ac881bae3b967f0c0083f4a.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
|
BIN
assets/city_tiles/streets/Kurve4.png
Executable file
After Width: | Height: | Size: 189 B |
34
assets/city_tiles/streets/Kurve4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Kurve4.png-4e21d3a85ecf40aaf7ab26c18f4fc615.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Kurve4.png"
|
||||
dest_files=[ "res://.import/Kurve4.png-4e21d3a85ecf40aaf7ab26c18f4fc615.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
|
BIN
assets/city_tiles/streets/Straße 1.png
Executable file
After Width: | Height: | Size: 159 B |
34
assets/city_tiles/streets/Straße 1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße 1.png-85b02c3f9261c459a5957c8b95636e07.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße 1.png"
|
||||
dest_files=[ "res://.import/Straße 1.png-85b02c3f9261c459a5957c8b95636e07.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
|
BIN
assets/city_tiles/streets/Straße2.png
Executable file
After Width: | Height: | Size: 145 B |
34
assets/city_tiles/streets/Straße2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße2.png-5580c8b6a829c4be2283cc6088855227.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße2.png"
|
||||
dest_files=[ "res://.import/Straße2.png-5580c8b6a829c4be2283cc6088855227.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
|
BIN
assets/city_tiles/streets/Straße3.png
Executable file
After Width: | Height: | Size: 152 B |
34
assets/city_tiles/streets/Straße3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße3.png-79319a77f8d68cf5567f39b878aff0d1.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße3.png"
|
||||
dest_files=[ "res://.import/Straße3.png-79319a77f8d68cf5567f39b878aff0d1.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
|
BIN
assets/city_tiles/streets/Straße4.png
Executable file
After Width: | Height: | Size: 148 B |
34
assets/city_tiles/streets/Straße4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße4.png-6e003e27249c3eb7222743f49c8acc86.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße4.png"
|
||||
dest_files=[ "res://.import/Straße4.png-6e003e27249c3eb7222743f49c8acc86.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
|
BIN
assets/city_tiles/streets/Straße5.png
Executable file
After Width: | Height: | Size: 156 B |
34
assets/city_tiles/streets/Straße5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße5.png-75f71832e9561468f6329bbc33269b9e.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße5.png"
|
||||
dest_files=[ "res://.import/Straße5.png-75f71832e9561468f6329bbc33269b9e.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
|
BIN
assets/city_tiles/streets/Straße6.png
Executable file
After Width: | Height: | Size: 159 B |
34
assets/city_tiles/streets/Straße6.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/Straße6.png-f010f338b1b800961930f382a66368b2.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/city_tiles/streets/Straße6.png"
|
||||
dest_files=[ "res://.import/Straße6.png-f010f338b1b800961930f382a66368b2.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
|
@ -10,7 +10,7 @@ config_version=4
|
||||
|
||||
[application]
|
||||
|
||||
config/name="GMTK2021"
|
||||
config/name="City Bound"
|
||||
run/main_scene="res://World.tscn"
|
||||
config/icon="res://icon.png"
|
||||
|
||||
@ -22,6 +22,7 @@ window/size/height=720
|
||||
[physics]
|
||||
|
||||
common/enable_pause_aware_picking=true
|
||||
2d/default_gravity_vector=Vector2( 0, 0 )
|
||||
|
||||
[rendering]
|
||||
|
||||
|