feat: Graphics update for room 5 (#525)

Co-authored-by: Balloonpopper <balloonpopper@git.com>
This commit is contained in:
balloonpopper
2022-03-05 00:49:15 +11:00
committed by GitHub
parent 391d642549
commit bcb366c6af
19 changed files with 249 additions and 144 deletions

View File

@@ -1,14 +1,15 @@
[gd_scene load_steps=4 format=2]
[gd_scene load_steps=5 format=2]
[ext_resource path="res://addons/escoria-core/game/core-scripts/esc_item.gd" type="Script" id=2]
[ext_resource path="res://game/items/inventory/wrench.png" type="Texture" id=3]
[ext_resource path="res://game/items/inventory/wrench.png" type="Texture" id=1]
[ext_resource path="res://addons/escoria-core/game/core-scripts/esc_location.gd" type="Script" id=2]
[ext_resource path="res://addons/escoria-core/game/core-scripts/esc_item.gd" type="Script" id=3]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 44.696, 49.0953 )
[sub_resource type="RectangleShape2D" id=2]
extents = Vector2( 37, 33.5 )
[node name="wrench" type="Area2D"]
pause_mode = 1
script = ExtResource( 2 )
script = ExtResource( 3 )
global_id = "r5_wrench"
esc_script = "res://game/items/inventory/wrench.esc"
tooltip_name = "Wrench"
@@ -16,12 +17,18 @@ default_action = "look"
default_action_inventory = "look"
combine_when_selected_action_is_in = PoolStringArray( "use" )
use_from_inventory_only = true
inventory_texture = ExtResource( 3 )
inventory_texture = ExtResource( 1 )
dialog_color = Color( 1, 1, 1, 1 )
animations = null
[node name="sprite" type="Sprite" parent="."]
texture = ExtResource( 3 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 262, 436 )
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )
position = Vector2( 261, 435.5 )
shape = SubResource( 2 )
[node name="ESCLocation" type="Position2D" parent="."]
position = Vector2( 258, 486 )
script = ExtResource( 2 )