update dialogic

This commit is contained in:
Arnaud Vergnet 2021-03-26 13:41:38 +01:00
parent adb5380f49
commit 7187b24a92
104 changed files with 1530 additions and 40 deletions

View file

@ -4,7 +4,7 @@ extends Node
# Called when the node enters the scene tree for the first time.
func _ready():
var new_dialog = Dialogic.start('start')
var new_dialog = Dialogic.start('_start')
add_child(new_dialog)
new_dialog.connect('dialogic_signal', self, "_on_Dialogic_signal_received")
new_dialog.connect('event_end', self, "_on_Dialogic_event_end")

View file

@ -6,6 +6,7 @@ onready var nodes = {
'new_lines': $VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer2/NewLines,
'remove_empty_messages': $VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer/RemoveEmptyMessages,
'auto_color_names': $VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer3/AutoColorNames,
'propagate_input': $VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer4/PropagateInput,
}
func _ready():
update_data()
@ -14,6 +15,7 @@ func _ready():
nodes['new_lines'].connect('toggled', self, '_on_new_line_toggled')
nodes['remove_empty_messages'].connect('toggled', self, '_on_remove_empty_message_toggled')
nodes['auto_color_names'].connect('toggled', self, '_on_auto_color_names_toggled')
nodes['propagate_input'].connect('toggled', self, '_on_propagate_input_toggled')
func update_data():
@ -27,6 +29,10 @@ func dialog_options(settings):
nodes['remove_empty_messages'].pressed = settings.get_value('dialog', 'remove_empty_messages')
if settings.has_section_key('dialog', 'new_lines'):
nodes['new_lines'].pressed = settings.get_value('dialog', 'new_lines')
if settings.has_section_key('dialog', 'auto_color_names'):
nodes['auto_color_names'].pressed = settings.get_value('dialog', 'auto_color_names')
if settings.has_section_key('dialog', 'propagate_input'):
nodes['propagate_input'].pressed = settings.get_value('dialog', 'propagate_input')
func refresh_themes(settings):
@ -68,6 +74,9 @@ func _on_new_line_toggled(value):
func _on_auto_color_names_toggled(value):
set_value('dialog', 'auto_color_names', value)
func _on_propagate_input_toggled(value):
set_value('dialog', 'propagate_input', value)
# Reading and saving data to the settings file
func set_value(section, key, value):

View file

@ -18,11 +18,11 @@ size_flags_vertical = 3
[node name="HBoxContainer3" type="HBoxContainer" parent="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 184.0
margin_bottom = 212.0
[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer3"]
margin_right = 288.0
margin_bottom = 184.0
margin_bottom = 212.0
custom_constants/separation = 16
[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer3/VBoxContainer"]
@ -59,20 +59,16 @@ margin_left = 50.0
margin_right = 190.0
margin_bottom = 20.0
rect_min_size = Vector2( 140, 0 )
text = "Default"
items = [ "Default", null, false, 0, {
"file": "theme-1614997416.cfg"
}, "Alternative", null, false, 1, {
"file": "theme-1614997426.cfg"
}, "Small", null, false, 2, {
"file": "theme-1615080820.cfg"
text = "test"
items = [ "test", null, false, 0, {
"file": "theme-1616687382.cfg"
} ]
selected = 0
[node name="VBoxContainer2" type="VBoxContainer" parent="VBoxContainer/HBoxContainer3/VBoxContainer"]
margin_top = 70.0
margin_right = 288.0
margin_bottom = 184.0
margin_bottom = 212.0
[node name="Panel2" type="Panel" parent="VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2"]
margin_right = 288.0
@ -141,3 +137,20 @@ margin_left = 264.0
margin_right = 288.0
margin_bottom = 24.0
pressed = true
[node name="HBoxContainer4" type="HBoxContainer" parent="VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2"]
margin_top = 118.0
margin_right = 288.0
margin_bottom = 142.0
[node name="Label" type="Label" parent="VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer4"]
margin_top = 5.0
margin_right = 219.0
margin_bottom = 19.0
text = "Propagate input to rest of the Tree"
[node name="PropagateInput" type="CheckBox" parent="VBoxContainer/HBoxContainer3/VBoxContainer/VBoxContainer2/HBoxContainer4"]
margin_left = 223.0
margin_right = 247.0
margin_bottom = 24.0
pressed = true

View file

@ -7,11 +7,11 @@ var character_data = {
'file': ''
}
var positions = {
'left': Vector2(-400,-130),
'right': Vector2(+400,-130),
'center': Vector2(0,-130),
'center_right': Vector2(200,-130),
'center_left': Vector2(-200,-130)}
'left': Vector2(-400, 0),
'right': Vector2(+400, 0),
'center': Vector2(0, 0),
'center_right': Vector2(200, 0),
'center_left': Vector2(-200, 0)}
var direction = 'left'
var debug = false

View file

@ -260,23 +260,29 @@ func _insert_glossary_definitions(text: String):
return final_text;
func _process(_delta):
func _process(delta):
$TextBubble/NextIndicator.visible = finished
if Engine.is_editor_hint() == false:
if not Engine.is_editor_hint():
# Multiple choices
if waiting_for_answer:
$Options.visible = finished
else:
$Options.visible = false
if Input.is_action_just_pressed(input_next) and waiting == false:
if $TextBubble/Tween.is_active():
# Skip to end if key is pressed during the text animation
$TextBubble/Tween.seek(999)
finished = true
else:
if waiting_for_answer == false and waiting_for_input == false:
load_dialog()
func _input(event: InputEvent) -> void:
if not Engine.is_editor_hint() and event.is_action_pressed(input_next) and not waiting:
if $TextBubble/Tween.is_active():
# Skip to end if key is pressed during the text animation
$TextBubble/Tween.seek(999)
finished = true
else:
if waiting_for_answer == false and waiting_for_input == false:
load_dialog()
if settings.has_section_key('dialog', 'propagate_input'):
var propagate_input: bool = settings.get_value('dialog', 'propagate_input')
if not propagate_input:
get_tree().set_input_as_handled()
func show_dialog():

View file

Before

Width:  |  Height:  |  Size: 237 KiB

After

Width:  |  Height:  |  Size: 237 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/evelyne.png-e623fd09067e06fb5b240164e28ba4ed.stex"
path="res://.import/evelyne.png-f16955f16e5334919487e80d67a95108.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/evelyne.png"
dest_files=[ "res://.import/evelyne.png-e623fd09067e06fb5b240164e28ba4ed.stex" ]
source_file="res://characters/Evelyne/evelyne.png"
dest_files=[ "res://.import/evelyne.png-f16955f16e5334919487e80d67a95108.stex" ]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_angry.png-c371a451f6b8fc19d1d16bb4f560679c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_angry.png"
dest_files=[ "res://.import/evelyne_angry.png-c371a451f6b8fc19d1d16bb4f560679c.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_blasee.png-473b27a519af5b63760f5ef7c7a1d39e.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_blasee.png"
dest_files=[ "res://.import/evelyne_blasee.png-473b27a519af5b63760f5ef7c7a1d39e.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_hautaine.png-c8f8ea4049bf336b3c4a0a4171af1844.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_hautaine.png"
dest_files=[ "res://.import/evelyne_hautaine.png-c8f8ea4049bf336b3c4a0a4171af1844.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_neutre.png-0250c5c19d66258fc49be706f6a72cdf.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_neutre.png"
dest_files=[ "res://.import/evelyne_neutre.png-0250c5c19d66258fc49be706f6a72cdf.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_no_comment.png-1ff03e3fe2f063303d17745615252394.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_no_comment.png"
dest_files=[ "res://.import/evelyne_no_comment.png-1ff03e3fe2f063303d17745615252394.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_sans_voix.png-1d71971691fb2c1442b06f0a43c9947c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_sans_voix.png"
dest_files=[ "res://.import/evelyne_sans_voix.png-1d71971691fb2c1442b06f0a43c9947c.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_satisfaite.png-5026fabda06a6d83ceddc0f55a756ace.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_satisfaite.png"
dest_files=[ "res://.import/evelyne_satisfaite.png-5026fabda06a6d83ceddc0f55a756ace.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/evelyne_shocked.png-7e0cf210c3a77fede904c4c9f4afb649.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Evelyne/evelyne_shocked.png"
dest_files=[ "res://.import/evelyne_shocked.png-7e0cf210c3a77fede904c4c9f4afb649.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/jean-michel.png-b22b3a757f0e52ef000ed620f76bd814.stex"
path="res://.import/Jean-Michel.png-23623d9cd082db7c035e64db600bb6b5.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/jean-michel.png"
dest_files=[ "res://.import/jean-michel.png-b22b3a757f0e52ef000ed620f76bd814.stex" ]
source_file="res://characters/Jean-Michel/Jean-Michel.png"
dest_files=[ "res://.import/Jean-Michel.png-23623d9cd082db7c035e64db600bb6b5.stex" ]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_batard.png-b55e4b24dae93ea0a066ca855616a68e.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_batard.png"
dest_files=[ "res://.import/Jean-Michel_batard.png-b55e4b24dae93ea0a066ca855616a68e.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_bien_joue_petit.png-7bafe01ddaae9e78f9ae35267bc0940c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_bien_joue_petit.png"
dest_files=[ "res://.import/Jean-Michel_bien_joue_petit.png-7bafe01ddaae9e78f9ae35267bc0940c.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_haineux.png-3967ee302e479f2154bc6b014e6b11d1.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_haineux.png"
dest_files=[ "res://.import/Jean-Michel_haineux.png-3967ee302e479f2154bc6b014e6b11d1.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_haineux2.png-6177163c53064c50baf501633ecf39a9.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_haineux2.png"
dest_files=[ "res://.import/Jean-Michel_haineux2.png-6177163c53064c50baf501633ecf39a9.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_haineux3.png-043110423b3c0f211f67dcb08ce0360f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_haineux3.png"
dest_files=[ "res://.import/Jean-Michel_haineux3.png-043110423b3c0f211f67dcb08ce0360f.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_impressed.png-542bba94090a11f17569cfbcec95a30b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_impressed.png"
dest_files=[ "res://.import/Jean-Michel_impressed.png-542bba94090a11f17569cfbcec95a30b.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_impressed2.png-07127dc3c134dc7cb4acf7be0251210f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_impressed2.png"
dest_files=[ "res://.import/Jean-Michel_impressed2.png-07127dc3c134dc7cb4acf7be0251210f.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_narquois.png-7aa77067c4de72ad385a69e40931b6fe.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_narquois.png"
dest_files=[ "res://.import/Jean-Michel_narquois.png-7aa77067c4de72ad385a69e40931b6fe.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_patrocontent.png-a39eec2bcaa96c1e73ce4453fd4de9eb.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_patrocontent.png"
dest_files=[ "res://.import/Jean-Michel_patrocontent.png-a39eec2bcaa96c1e73ce4453fd4de9eb.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_raconte_sa_vie.png-aa0c83800a4fc91856c46f52c9ed59ba.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_raconte_sa_vie.png"
dest_files=[ "res://.import/Jean-Michel_raconte_sa_vie.png-aa0c83800a4fc91856c46f52c9ed59ba.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_shocked.png-ff1cbb4fd375e5c7fefd1630f2a49a53.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_shocked.png"
dest_files=[ "res://.import/Jean-Michel_shocked.png-ff1cbb4fd375e5c7fefd1630f2a49a53.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Michel_wtf.png-66106598851ea0fad3de0c27d989af82.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Michel_wtf.png"
dest_files=[ "res://.import/Jean-Michel_wtf.png-66106598851ea0fad3de0c27d989af82.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Jean-Méchant.png-3130f56bcf194ab1e1085306a6af4c5f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Jean-Michel/Jean-Méchant.png"
dest_files=[ "res://.import/Jean-Méchant.png-3130f56bcf194ab1e1085306a6af4c5f.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_barbe.png-47dd54cc3838869391a6f3e78a564265.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_barbe.png"
dest_files=[ "res://.import/Pat_barbe.png-47dd54cc3838869391a6f3e78a564265.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_cool_barbe.png-d0107300200d2bbde3a5eae2ae8bbfd0.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_cool_barbe.png"
dest_files=[ "res://.import/Pat_cool_barbe.png-d0107300200d2bbde3a5eae2ae8bbfd0.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_grave_content_barbe.png-0d67b1339d72d13c65644e5d2478c7de.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_grave_content_barbe.png"
dest_files=[ "res://.import/Pat_grave_content_barbe.png-0d67b1339d72d13c65644e5d2478c7de.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_heureux_barbe.png-4307ed3a889f7142e40d63eefcbf2510.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_heureux_barbe.png"
dest_files=[ "res://.import/Pat_heureux_barbe.png-4307ed3a889f7142e40d63eefcbf2510.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_impressed_barbe.png-a699306d6d18dc08a82c1dea3e7ece78.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_impressed_barbe.png"
dest_files=[ "res://.import/Pat_impressed_barbe.png-a699306d6d18dc08a82c1dea3e7ece78.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_inquiet_barbe.png-6385202d93f15ee821d7bf3c1fab3380.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_inquiet_barbe.png"
dest_files=[ "res://.import/Pat_inquiet_barbe.png-6385202d93f15ee821d7bf3c1fab3380.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_interloque_barbe.png-cb4f8800b77c861b0bcf8391eed4861a.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_interloque_barbe.png"
dest_files=[ "res://.import/Pat_interloque_barbe.png-cb4f8800b77c861b0bcf8391eed4861a.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_sad_barbe.png-906606286935e1be0f49a0755d7a97f3.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_sad_barbe.png"
dest_files=[ "res://.import/Pat_sad_barbe.png-906606286935e1be0f49a0755d7a97f3.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_teube_barbe.png-a12b7e1c8fd1d49171fcc790dc8d452d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_teube_barbe.png"
dest_files=[ "res://.import/Pat_teube_barbe.png-a12b7e1c8fd1d49171fcc790dc8d452d.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_tranquille_barbe.png-f62196c5f5c44c459f2a8569c74c6cf1.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_tranquille_barbe.png"
dest_files=[ "res://.import/Pat_tranquille_barbe.png-f62196c5f5c44c459f2a8569c74c6cf1.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_wut_barbe.png-2df6e1598a3ae401fc902ac5f7203eac.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick avec Barbe/Pat_wut_barbe.png"
dest_files=[ "res://.import/Pat_wut_barbe.png-2df6e1598a3ae401fc902ac5f7203eac.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_attriste.png-45a02cb38d3fa986ca4a2827b5f458a6.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_attriste.png"
dest_files=[ "res://.import/Pat_attriste.png-45a02cb38d3fa986ca4a2827b5f458a6.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_cool.png-0d1c84298df6e89b3f1345dcc1658bda.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_cool.png"
dest_files=[ "res://.import/Pat_cool.png-0d1c84298df6e89b3f1345dcc1658bda.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_grave_content.png-9ccacb518db1b2fed97acec24ef5c076.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_grave_content.png"
dest_files=[ "res://.import/Pat_grave_content.png-9ccacb518db1b2fed97acec24ef5c076.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_heureux.png-b6f4a491458df7fbdab395a76cbaf586.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_heureux.png"
dest_files=[ "res://.import/Pat_heureux.png-b6f4a491458df7fbdab395a76cbaf586.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_impressed.png-01f6092be6d47ee707909175f7e31ee5.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_impressed.png"
dest_files=[ "res://.import/Pat_impressed.png-01f6092be6d47ee707909175f7e31ee5.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_inquiet.png-b2117f1c90bea92de9f864dd12785a97.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_inquiet.png"
dest_files=[ "res://.import/Pat_inquiet.png-b2117f1c90bea92de9f864dd12785a97.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_interloque.png-c3c28f9a84fa9122698976f5040d3cec.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_interloque.png"
dest_files=[ "res://.import/Pat_interloque.png-c3c28f9a84fa9122698976f5040d3cec.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/patrick.png-c4707025251b6341b4d90d043c7d9382.stex"
path="res://.import/Pat_sad.png-851cbe97b12edf37bf0362a3baba6a9f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/patrick.png"
dest_files=[ "res://.import/patrick.png-c4707025251b6341b4d90d043c7d9382.stex" ]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_sad.png"
dest_files=[ "res://.import/Pat_sad.png-851cbe97b12edf37bf0362a3baba6a9f.stex" ]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_teube.png-f6a43335ddf9bd62f1f8583673f55653.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_teube.png"
dest_files=[ "res://.import/Pat_teube.png-f6a43335ddf9bd62f1f8583673f55653.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_tranquille.png-92b439345f216b4b72458e20eea3d09f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_tranquille.png"
dest_files=[ "res://.import/Pat_tranquille.png-92b439345f216b4b72458e20eea3d09f.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/Pat_wut.png-8b1a8c2d15c84c9149ae94b30de39c0e.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/Pat_wut.png"
dest_files=[ "res://.import/Pat_wut.png-8b1a8c2d15c84c9149ae94b30de39c0e.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/veritablePatrick.png-8835ac1d24469740823fe5c5f8d7a98b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://characters/Patrick/Patrick sans Barbe/veritablePatrick.png"
dest_files=[ "res://.import/veritablePatrick.png-8835ac1d24469740823fe5c5f8d7a98b.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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

View file

@ -1 +1 @@
{"color":"#ff488f39","default_speaker":false,"description":"L'écolo","display_name":"","display_name_bool":false,"id":"character-1616658373.json","name":"Evelyne","offset_x":0,"offset_y":200,"portraits":[{"name":"Default","path":"res://characters/evelyne.png"}],"scale":30}
{"color":"#ff488f39","default_speaker":false,"description":"L'écolo","display_name":"","display_name_bool":false,"id":"character-1616658373.json","name":"Evelyne","offset_x":0,"offset_y":10,"portraits":[{"name":"Default","path":"res://characters/Evelyne/evelyne.png"}],"scale":30}

Some files were not shown because too many files have changed in this diff Show more