Commit f0705579 authored by Julia Santos's avatar Julia Santos

Uploaded placeholders, can now move between rooms, added Dialogue Controller...

Uploaded placeholders, can now move between rooms, added Dialogue Controller for checking flavor text on item interactions
parent f27921b0
source_md5="e54959a47e24cdf3ea74cf7437f608f5"
dest_md5="307e5289fc8f513b547e896f982fbddc"
source_md5="3d7afa3be3dd537f5b25319dd1af389d"
dest_md5="4e99dcf121a44b70d612d26e2fd512b0"
source_md5="d61e38dd81f5ace53ff4f910658244f3"
dest_md5="f07193cb72703a1b0a1f7d444c4e4605"
source_md5="738212b5d5f9bedc06b358fb8f4fb831"
dest_md5="c32461af1efa3b7ee7fb26168e7c1a0b"
source_md5="1b2d6876e673e7430e69f29582d20f58"
dest_md5="4ffd4e7d09311f95b67576141d2c91dc"
source_md5="7792df985957a9aa167422c448060308"
dest_md5="52ab88c4e9d6df75a0cefbfa045d109c"
source_md5="7aa4beeb7c4387c7c88c76f4dcbb3b50"
dest_md5="19d2b550ee2aecf793e15e791e30e8a8"
source_md5="d6dec260b39a3ae055a3a11976dbf03e"
dest_md5="9ecfb090ff445be93d7afb145cca43fc"
source_md5="44a98a2ac3754240f42d2efe47d509da"
dest_md5="f48500605271999b16ef1f19a2a6741d"
source_md5="eed3cfdbf75c263473fa166e7c28aceb"
dest_md5="f8c022ace7b486bcf8ae3230d94e1831"
source_md5="dd6f940e453b8115585edf34e19ddec6"
dest_md5="10eb25b88e26e8ce03460ac7e533e7ac"
source_md5="53128593c309ac156fd76446aa976add"
dest_md5="120d19d8e1351efa506bdd6a0ec560ec"
source_md5="b48fa356ea83ec302f96f41efa617905"
dest_md5="9403238337bb998b6ca1e2c00d0e85ce"
source_md5="f701bcbb277575e9448c2ac8fa48fa9b"
dest_md5="343fd1d89c83072c173dcdca04f43166"
source_md5="97b6930912b541fbd7bdafba972d265f"
dest_md5="3530bb7503a550893e0d0155b7c9361f"
source_md5="806cd7ca41856dddffb8d97bdc153bbb"
dest_md5="4f1b9ed4db75aa6df3819628c9ed344d"
source_md5="5474503868b8cc87defd603061b692d2"
dest_md5="83b12a26c1fc798ac75cef6caa4b9ebf"
source_md5="94d604a4945510e92efea9e954a4cdcf"
dest_md5="a42ed08643812c6d51f3589c382c3d18"
source_md5="85c76f9831ce045884fb3393d0cbc923"
dest_md5="a0049c5c0dd0d569ffee5477b149edad"
source_md5="72d5ce4d6efc4083d4e072a5079af483"
dest_md5="6a3c8b36920709d69db85c83231eb6bc"
source_md5="a129f6c2ac4dddd025246c253eced8a6"
dest_md5="e3b6f2c59bb5e446800bb510613e2f58"
source_md5="a9916fdd5a9720978868cfa4653fb57e"
dest_md5="5909e0a52f5a94d186f49dc802e9585b"
source_md5="70d5f9dd7509f6000715331790d19ea2"
dest_md5="5b1b9386b7fa6a7e7dcb24540d3d4ce4"
source_md5="3128396862967a2f59f89ff673b48e42"
dest_md5="05446937f9ba5b8a4dec06a51deb04a3"
source_md5="67d57f625076726b6d6dffb3619a5786"
dest_md5="f8cea8f6bc8f366b777ddc2a62bdd84a"
source_md5="a1d7574e9d337d77b799e9ac79344559"
dest_md5="3fabcb81dd9cffabcd3d94963931cc23"
source_md5="731ddb36548b8a0b7fee0aeb9f4d4570"
dest_md5="31157a498d21acfbdbe32d2a887b166e"
source_md5="aa0b1105880602fe5028989199b7ba02"
dest_md5="7ca56a67e23dfdbfcde032d2f2d97561"
source_md5="12c8ba1e15792f0b8d97a8cf995c5f84"
dest_md5="0ba64068799150b8c38886dce6636acc"
source_md5="64712d5f0c78d355a78e904364a0beaf"
dest_md5="6d2835d7c07f0312818fe2edd10d1b23"
source_md5="b1c37c395a84aac78203945c74553840"
dest_md5="c7a20d8fbda6d8678d181b74dff7d44d"
source_md5="17c800a3dfa7b0d815d5ad42478e8d60"
dest_md5="3874c82e290fc94195c2e7cdeb6eed85"
source_md5="9355838c0fc842089a22b66b68e86f43"
dest_md5="e50bd77b1671c7d5758e678d796a67e2"
source_md5="ac0879fd78c0a0a523ce44d285c8e8f7"
dest_md5="a24a48a0d5d72b7febe9ce1cc5067d49"
extends TextureButton
# Called when the node enters the scene tree for the first time.
func _ready():
var funcName = "_pressed" + self.get_name()
print (funcName)
connect("pressed", get_parent().get_node("Movement Handler"), funcName)
pass # Replace with function body.
......@@ -15,6 +15,11 @@ func _input(event):
print("Unselected")
inventory.unselect_all()
func passUI(inv, dia):
inventory = inv
print("Found " + inventory.get_name())
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
extends Button
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
extends Control
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
func interaction(selected, clicked): #selected = item in inventory, clicked = item in environment
match clicked:
"Placeholder A":
match selected:
"Placeholder 1":
return "Using Placeholder 1 on A"
"Placeholder 2":
return "Using Placeholder 2 on A"
"Placeholder 3":
return "Using Placeholder 3 on A"
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
extends Control
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
func interaction(selected, clicked): #selected = item in inventory, clicked = item in environment
match clicked:
"Placeholder 1":
match selected:
"Placeholder 2":
return "Using Placeholder 2 on 1"
"Placeholder 3":
return "Using Placeholder 3 on 1"
"Placeholder 2":
match clicked:
"Placeholder 1":
return "Using Placeholder 1 on 2"
"Placeholder 3":
return "Using Placeholder 3 on 2"
"Placeholder 3":
match clicked:
"Placeholder 1":
return "Using Placeholder 1 on 3"
"Placeholder 2":
return "Using Placeholder 1 on 3"
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
extends StaticBody2D
onready var dialogueBox #= get_tree().get_root().get_node("Dialogue Box/RichTextLabel"
onready var inventory #= get_tree().get_root().get_node("Inventory")
onready var dialogueBox
onready var inventory
onready var texture = get_node("CollisionShape2D/Sprite").get_texture()
export(bool) var retrievable #editable in the Inspector, check if this item can be placed in the inventory
export(bool) var interactable
export(bool) var interactable #editable in Inspector, for environmental objects that are interactable but not retrievable
export(String) var flavorText #editable in the Inspector, the flavor text that appears in the dialogue box when picked up
onready var control = get_parent().get_node("Dialogue control")
# https://docs.godotengine.org/en/stable/getting_started/scripting/gdscript/gdscript_exports.html
#onready var clickLog = File.new()
# https://padamthapa.com/blog/how-to-detect-click-inside-staticbody2d-in-godot/
func _ready():
pass
func passUI(inv, dia):
func passUI(inv, dia): #passes the inventory and dialogue box from the parent scene to the item in the instanced scene
inventory = inv
dialogueBox = dia
print("Found " + inventory.get_name())
print("Found " + dialogueBox.get_name())
func _input_event(viewport, event, shape_idx):
if event is InputEventMouseButton:
if event.button_index == BUTTON_LEFT and event.pressed:
var selected
print("Clicked on " + self.get_name() + " with selected " + str(inventory.is_anything_selected()))
if retrievable:
if inventory.is_anything_selected() and interactable: #if the player has an item selected and they use it on something interactable
selected = inventory.get_selected_items()[0] #get index of item in inventory
dialogueBox.text = control.interaction(inventory.get_item_text(selected), self.get_name())
#dialogueBox.text = ("Tried to use " + inventory.get_item_text(selected) + " on " + self.get_name())
inventory.unselect_all() #unselect item
elif retrievable: #if they click on something retrievable
if !inventory.is_anything_selected(): #with empty hands, pick it up
dialogueBox.text = flavorText
inventory.add_item(self.get_name(), texture)
queue_free()
elif inventory.is_anything_selected():
#get_tree().set_input_as_handled()
dialogueBox.text = ("Tried to use " + inventory.get_item_text(inventory.get_selected_items()[0]) + " on " + self.get_name())
#print(inventory.get_selected_items()[0])
else: #while holding something, do interaction
selected = inventory.get_selected_items()[0] #get index of item in inventory
dialogueBox.text = control.interaction(inventory.get_item_text(selected), self.get_name())
inventory.unselect_all()
elif interactable: #for environment things that arent retrievable, and hands are empty
dialogueBox.text = flavorText
#
#print("Clicked on " + self.get_name())
#dialogueBox.text = "Clicked on " + self.get_name()
#clickLog.open("res://log.txt",File.WRITE_READ)
......
extends ItemList
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
pass
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
func _on_Button_pressed(): #when the deselect button is clicked, deselect the item currently selected
unselect_all()
[gd_scene load_steps=6 format=2]
[ext_resource path="res://assets/Placeholder BGs/kitchen area.png" type="Texture" id=1]
[ext_resource path="res://assets/placeholder item.png" type="Texture" id=2]
[ext_resource path="res://Item.gd" type="Script" id=3]
[ext_resource path="res://Dialogue control - Kitchen.gd" type="Script" id=4]
[sub_resource type="RectangleShape2D" id=2]
[node name="Node2D" type="Node2D"]
[node name="BG" type="Sprite" parent="."]
position = Vector2( 492.818, 298.898 )
scale = Vector2( 0.829244, 0.829244 )
texture = ExtResource( 1 )
__meta__ = {
"_edit_lock_": true
}
[node name="Placeholder A" type="StaticBody2D" parent="."]
position = Vector2( -309.877, 16.0571 )
scale = Vector2( 0.829244, 0.829244 )
input_pickable = true
script = ExtResource( 3 )
__meta__ = {
"_edit_group_": true
}
interactable = true
flavorText = "NEW THING"
[node name="CollisionShape2D" type="CollisionShape2D" parent="Placeholder A"]
position = Vector2( 669.45, 372.084 )
scale = Vector2( 5, 5 )
shape = SubResource( 2 )
[node name="Sprite" type="Sprite" parent="Placeholder A/CollisionShape2D"]
position = Vector2( -0.158181, -0.0184715 )
scale = Vector2( 0.101337, 0.101337 )
texture = ExtResource( 2 )
[node name="Dialogue control" type="Control" parent="."]
visible = false
margin_right = 40.0
margin_bottom = 40.0
script = ExtResource( 4 )
__meta__ = {
"_edit_use_anchors_": false
}
extends Node2D
onready var dialogueBox = get_parent().get_node("Dialogue Box/RichTextLabel")
onready var inventory = get_parent().get_node("Inventory")
onready var clicks
onready var current = self.get_name() #name of the room Movie is currently in
onready var dialogueBox = get_parent().get_node("Moxie/Camera2D/Dialogue Box/RichTextLabel")
onready var inventory = get_parent().get_node("Moxie/Camera2D/Inventory")
export(Array, NodePath) onready var items
#https://www.reddit.com/r/godot/comments/puiioy/exporting_node_references_in_gdscript_is_tricky/
#onready var items = [get_node("Placeholder 1"), get_node("Placeholder 2")]
# Called when the node enters the scene tree for the first time.
func _ready():
clicks = 0
print(items.size())
#gives each item in a room access to the dialogue box and the inventory from the parent room
passUI()
func passUI():
for item in items:
get_node(item).passUI(inventory,dialogueBox)
print("Passed UI to " + get_node(item).get_name())
pass # Replace with function body.
func _input(event):
if event is InputEventMouseButton:
if event.button_index == BUTTON_LEFT and event.pressed:
print("Clicked" + " with selected " + str(inventory.is_anything_selected()))
#func _input(event):
#whenever something onscreen is clicked on
#if event is InputEventMouseButton:
#if event.button_index == BUTTON_LEFT and event.pressed:
# print("Clicked" + " with selected " + str(inventory.is_anything_selected()))
#inventory.unselect_all()
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
......
extends Control
onready var rooms = [self.owner.get_node("Bedroom"), self.owner.get_node("Kitchen")]
onready var current
# Called when the node enters the scene tree for the first time.
func _ready():
current = 0
rooms[1].hide()
pass # Replace with function body.
func _pressedRight():
print("Click")
rooms[current].hide()
current += 1
rooms[current].show()
func _pressedLeft():
print("Click")
rooms[current].hide()
current -= 1
rooms[current].show()
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
[gd_scene load_steps=5 format=2]
[gd_scene load_steps=11 format=2]
[ext_resource path="res://Test room 1.tscn" type="PackedScene" id=1]
[ext_resource path="res://assets/189066690_228150108704696_3850052974465333899_n.png" type="Texture" id=2]
[ext_resource path="res://ItemList.gd" type="Script" id=3]
[ext_resource path="res://Main.gd" type="Script" id=4]
[ext_resource path="res://Button.gd" type="Script" id=5]
[ext_resource path="res://Movement.gd" type="Script" id=6]
[ext_resource path="res://assets/Thesis Clickables/right arrow.png" type="Texture" id=7]
[ext_resource path="res://Kitchen.tscn" type="PackedScene" id=8]
[ext_resource path="res://assets/Thesis Clickables/left arrow.png" type="Texture" id=9]
[ext_resource path="res://Arrows.gd" type="Script" id=10]
[node name="Node2D" type="Node2D"]
......@@ -11,24 +17,32 @@
script = ExtResource( 4 )
items = [ NodePath("Placeholder 1"), NodePath("Placeholder 2"), NodePath("Placeholder 3") ]
[node name="Kitchen" parent="." instance=ExtResource( 8 )]
visible = false
script = ExtResource( 4 )
items = [ NodePath("Placeholder A") ]
[node name="Moxie" type="Sprite" parent="."]
position = Vector2( 219.565, 314.247 )
scale = Vector2( 0.287676, 0.287676 )
position = Vector2( 414.953, 338.642 )
scale = Vector2( 0.349515, 0.349515 )
texture = ExtResource( 2 )
[node name="Dialogue Box" type="Panel" parent="."]
anchor_right = 0.791
anchor_bottom = 0.14
margin_left = 459.826
margin_top = 34.6902
margin_right = 1000.83
margin_bottom = 150.69
[node name="Camera2D" type="Camera2D" parent="Moxie"]
position = Vector2( 293.69, -103 )
scale = Vector2( 2.86111, 2.86111 )
current = true
[node name="Dialogue Box" type="Panel" parent="Moxie/Camera2D"]
margin_left = -57.7761
margin_top = -267.951
margin_right = 483.228
margin_bottom = -151.952
__meta__ = {
"_edit_group_": true,
"_edit_use_anchors_": false
}
[node name="RichTextLabel" type="RichTextLabel" parent="Dialogue Box"]
[node name="RichTextLabel" type="RichTextLabel" parent="Moxie/Camera2D/Dialogue Box"]
margin_left = 21.4404
margin_top = 20.0
margin_right = 251.44
......@@ -38,11 +52,45 @@ __meta__ = {
"_edit_use_anchors_": false
}
[node name="Inventory" type="ItemList" parent="."]
margin_left = 16.0
margin_top = 494.0
margin_right = 612.0
margin_bottom = 587.0
[node name="Movement Handler" type="Control" parent="Moxie/Camera2D"]
margin_left = -501.602
margin_top = 191.358
margin_right = -461.602
margin_bottom = 231.358
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Right" type="TextureButton" parent="Moxie/Camera2D"]
margin_left = 410.346
margin_top = -44.4802
margin_right = 1410.35
margin_bottom = 955.52
rect_scale = Vector2( 0.1, 0.1 )
texture_normal = ExtResource( 7 )
script = ExtResource( 10 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Left" type="TextureButton" parent="Moxie/Camera2D"]
margin_left = -505.0
margin_top = -44.0
margin_right = 495.0
margin_bottom = 956.0
rect_scale = Vector2( 0.1, 0.1 )
texture_normal = ExtResource( 9 )
script = ExtResource( 10 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Inventory" type="ItemList" parent="Moxie/Camera2D"]
margin_left = -501.602
margin_top = 191.358
margin_right = 94.3979
margin_bottom = 284.358
rect_pivot_offset = Vector2( 5, 0 )
custom_constants/hseparation = 10
max_columns = 5
......@@ -54,4 +102,18 @@ __meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="Moxie/Camera2D"]
margin_left = 48.1992
margin_top = 253.944
margin_right = 117.199
margin_bottom = 284.944
text = "Deselect"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="Moxie/Camera2D/Button" to="Moxie/Camera2D/Inventory" method="_on_Button_pressed"]
[editable path="Bedroom"]
[editable path="Kitchen"]
[gd_scene load_steps=5 format=2]
[gd_scene load_steps=6 format=2]
[ext_resource path="res://assets/room zoom out.png" type="Texture" id=1]
[ext_resource path="res://assets/placeholder item.png" type="Texture" id=2]
[ext_resource path="res://Item.gd" type="Script" id=3]
[ext_resource path="res://Dialogue control - Test Room 1.gd" type="Script" id=4]
[sub_resource type="RectangleShape2D" id=1]
......@@ -23,6 +24,7 @@ script = ExtResource( 3 )
__meta__ = {
"_edit_group_": true
}
interactable = true
flavorText = "Woeee Can't pick me up!!!"
[node name="CollisionShape2D" type="CollisionShape2D" parent="Placeholder 2"]
......@@ -43,7 +45,6 @@ __meta__ = {
"_edit_group_": true
}
retrievable = true
interactable = true
flavorText = "Third!"
[node name="CollisionShape2D" type="CollisionShape2D" parent="Placeholder 3"]
......@@ -75,3 +76,12 @@ shape = SubResource( 1 )
position = Vector2( -0.158181, -0.0184715 )
scale = Vector2( 0.101337, 0.101337 )
texture = ExtResource( 2 )
[node name="Dialogue control" type="Control" parent="."]
visible = false
margin_right = 40.0
margin_bottom = 40.0
script = ExtResource( 4 )
__meta__ = {
"_edit_use_anchors_": false
}
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/basket area.png-69c4160d59d1b8a8cfae51ab0fa040ba.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/basket area.png"
dest_files=[ "res://.import/basket area.png-69c4160d59d1b8a8cfae51ab0fa040ba.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/basket zoom.PNG-4af27060adc06f77602f839903433e86.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/basket zoom.PNG"
dest_files=[ "res://.import/basket zoom.PNG-4af27060adc06f77602f839903433e86.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/desk area.png-0fd13ddb4cbc306ac9b41470d96a4957.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/desk area.png"
dest_files=[ "res://.import/desk area.png-0fd13ddb4cbc306ac9b41470d96a4957.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/kitchen area.png-3b59b047b454ce6c6e57daadd1263398.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/kitchen area.png"
dest_files=[ "res://.import/kitchen area.png-3b59b047b454ce6c6e57daadd1263398.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/laundry all close.png-8872e11ae004b69f81d6352484727486.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/laundry all close.png"
dest_files=[ "res://.import/laundry all close.png-8872e11ae004b69f81d6352484727486.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/laundry area.png-b97f5e7dc2478ae1662ebdc9368f7fb5.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/laundry area.png"
dest_files=[ "res://.import/laundry area.png-b97f5e7dc2478ae1662ebdc9368f7fb5.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/laundry door open.png-4b5301b83ad58821eec5d9f14596c644.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/laundry door open.png"
dest_files=[ "res://.import/laundry door open.png-4b5301b83ad58821eec5d9f14596c644.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/laundry drawer open.png-cf39f4bdf04fd234e2059389b7fe5453.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/laundry drawer open.png"
dest_files=[ "res://.import/laundry drawer open.png-cf39f4bdf04fd234e2059389b7fe5453.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/notebook zoom in.png-07d46ca69f45036ed23ab61ad90ac333.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/notebook zoom in.png"
dest_files=[ "res://.import/notebook zoom in.png-07d46ca69f45036ed23ab61ad90ac333.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/ref inside.png-775019fa0cd16dfcc77adc7cd4b4077c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/ref inside.png"
dest_files=[ "res://.import/ref inside.png-775019fa0cd16dfcc77adc7cd4b4077c.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/room zoom out.png-f2a9ac5a5e52f8dc33e416fb5574b447.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/room zoom out.png"
dest_files=[ "res://.import/room zoom out.png-f2a9ac5a5e52f8dc33e416fb5574b447.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/title screen.png-9d0711f0636239f721e6906fc3ca19ac.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/title screen.png"
dest_files=[ "res://.import/title screen.png-9d0711f0636239f721e6906fc3ca19ac.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/ui notebook down.png-a18b2637a72f98e650e86342b70591e8.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/ui notebook down.png"
dest_files=[ "res://.import/ui notebook down.png-a18b2637a72f98e650e86342b70591e8.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/ui notebook up.png-5802e956d7678dc7e5455f4fa732785e.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/ui notebook up.png"
dest_files=[ "res://.import/ui notebook up.png-5802e956d7678dc7e5455f4fa732785e.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/workspace blur.png-e3590d86d4a0a5cde939ecdcc6c12a83.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/workspace blur.png"
dest_files=[ "res://.import/workspace blur.png-e3590d86d4a0a5cde939ecdcc6c12a83.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/workspace.png-80b6ab47012f9f77fb3ae7b34344a5e6.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Placeholder BGs/workspace.png"
dest_files=[ "res://.import/workspace.png-80b6ab47012f9f77fb3ae7b34344a5e6.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bread.png-805b6e93d207a9ae6e190f612d7dc56c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/bread.png"
dest_files=[ "res://.import/bread.png-805b6e93d207a9ae6e190f612d7dc56c.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/clothes pile.png-0e9642e1068a37424f7c246204716908.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/clothes pile.png"
dest_files=[ "res://.import/clothes pile.png-0e9642e1068a37424f7c246204716908.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/continue button.png-7c992d924f178ba5d8e4b1c52852cf0f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/continue button.png"
dest_files=[ "res://.import/continue button.png-7c992d924f178ba5d8e4b1c52852cf0f.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/cook button.png-dd0fc37552c976e20c020d5ca1d36160.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/cook button.png"
dest_files=[ "res://.import/cook button.png-dd0fc37552c976e20c020d5ca1d36160.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/eat button.png-5268bf6f282bb38ad320f0c2b0cf6f97.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/eat button.png"
dest_files=[ "res://.import/eat button.png-5268bf6f282bb38ad320f0c2b0cf6f97.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
......@@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
path="res://.import/eggs.png-23c593cf7388aeee5a426856b8937f45.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.png"
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ]
source_file="res://assets/Thesis Clickables/eggs.png"
dest_files=[ "res://.import/eggs.png-23c593cf7388aeee5a426856b8937f45.stex" ]
[params]
......
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/left arrow.png-26edab9d547d5a5f21ed2a44b19d121f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/left arrow.png"
dest_files=[ "res://.import/left arrow.png-26edab9d547d5a5f21ed2a44b19d121f.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/moxie (confused).png-e45000c95843f98155947cea7ba5b5ab.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/moxie (confused).png"
dest_files=[ "res://.import/moxie (confused).png-e45000c95843f98155947cea7ba5b5ab.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/notebook.png-dac36d6e437642ffc9e789867a2b96f8.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/notebook.png"
dest_files=[ "res://.import/notebook.png-dac36d6e437642ffc9e789867a2b96f8.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/return arrow.png-ba7c2fea6c5a220a249845f29bbe9177.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/return arrow.png"
dest_files=[ "res://.import/return arrow.png-ba7c2fea6c5a220a249845f29bbe9177.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/right arrow.png-c8a4af17a1c7f7f7ba286d1ea0b385a4.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/right arrow.png"
dest_files=[ "res://.import/right arrow.png-c8a4af17a1c7f7f7ba286d1ea0b385a4.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/soap pour.png-5564d177e66210c943ca72a11c858aa8.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/soap pour.png"
dest_files=[ "res://.import/soap pour.png-5564d177e66210c943ca72a11c858aa8.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/soap.png-93c3e5ae993592d84ef303c214def992.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/soap.png"
dest_files=[ "res://.import/soap.png-93c3e5ae993592d84ef303c214def992.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/start button.png-23cf21d23c55128b6b3adaac9dfcc305.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/start button.png"
dest_files=[ "res://.import/start button.png-23cf21d23c55128b6b3adaac9dfcc305.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/trail 1.png-65c95b7fdd51c154b212cc235577c4a4.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/trail 1.png"
dest_files=[ "res://.import/trail 1.png-65c95b7fdd51c154b212cc235577c4a4.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/trail 2.png-487f07d08dd87da904408cf57d4daa92.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/trail 2.png"
dest_files=[ "res://.import/trail 2.png-487f07d08dd87da904408cf57d4daa92.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/trail 3.png-9960f4c5b964f5aca36ca6c97e309a5d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/trail 3.png"
dest_files=[ "res://.import/trail 3.png-9960f4c5b964f5aca36ca6c97e309a5d.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
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/trail 4.png-981c4881d0d8d742f95645909a2023bf.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/Thesis Clickables/trail 4.png"
dest_files=[ "res://.import/trail 4.png-981c4881d0d8d742f95645909a2023bf.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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment