Compare commits
23 Commits
32ac007256
...
90b8dda16a
| Author | SHA1 | Date | |
|---|---|---|---|
| 90b8dda16a | |||
| ecff43d5c3 | |||
| e1b1a2f447 | |||
| 2d4e853ec8 | |||
| 8f097de476 | |||
| 109573fb1b | |||
| 0e55394699 | |||
| b1335d4b00 | |||
| 078e26e868 | |||
| ffebe10593 | |||
| 4c8406ba97 | |||
| 5fc7b3d563 | |||
| d4892e1aa4 | |||
| e0ea5ef5be | |||
| 02ff401273 | |||
| c3e78b5db2 | |||
| 09b2baab0a | |||
| cba6c09ca0 | |||
| da7cd2f6f2 | |||
| 12842a37ff | |||
| ffc7ef2d61 | |||
| 20ed134628 | |||
| 3eb35d4e7d |
@@ -0,0 +1,69 @@
|
|||||||
|
extends Node
|
||||||
|
|
||||||
|
@export_node_path("Node2D")
|
||||||
|
var target_node_path = NodePath()
|
||||||
|
|
||||||
|
@export var flip_bend_direction = false
|
||||||
|
@export var joint_one_bone_index = -1
|
||||||
|
@export var joint_two_bone_index = -1
|
||||||
|
|
||||||
|
var _angle_a = 0.0
|
||||||
|
var _angle_b = 0.0
|
||||||
|
|
||||||
|
|
||||||
|
func _process(delta: float) -> void:
|
||||||
|
_update_two_bone_ik_angles()
|
||||||
|
|
||||||
|
|
||||||
|
func _update_two_bone_ik_angles():
|
||||||
|
assert(joint_one_bone_index != -1)
|
||||||
|
assert(joint_two_bone_index != -1)
|
||||||
|
|
||||||
|
if target_node_path.is_empty():
|
||||||
|
return
|
||||||
|
|
||||||
|
var target = get_node(target_node_path) as Node2D
|
||||||
|
var bone_a = get_parent().get_bone(joint_one_bone_index)
|
||||||
|
var bone_b = get_parent().get_bone(joint_two_bone_index)
|
||||||
|
|
||||||
|
var bone_a_len = bone_a.get_length()
|
||||||
|
var bone_b_len = bone_b.get_length()
|
||||||
|
|
||||||
|
var sin_angle2 = 0.0
|
||||||
|
var cos_angle2 = 1.0
|
||||||
|
|
||||||
|
_angle_b = 0.0
|
||||||
|
|
||||||
|
var cos_angle2_denom = 2.0 * bone_a_len * bone_b_len
|
||||||
|
if not is_zero_approx(cos_angle2_denom):
|
||||||
|
var target_len_sqr = _distance_squared_between(bone_a, target)
|
||||||
|
var bone_a_len_sqr = bone_a_len * bone_a_len
|
||||||
|
var bone_b_len_sqr = bone_b_len * bone_b_len
|
||||||
|
|
||||||
|
cos_angle2 = (target_len_sqr - bone_a_len_sqr - bone_b_len_sqr) / cos_angle2_denom
|
||||||
|
cos_angle2 = clamp(cos_angle2, -1.0, 1.0);
|
||||||
|
|
||||||
|
_angle_b = acos(cos_angle2)
|
||||||
|
if flip_bend_direction:
|
||||||
|
_angle_b = -_angle_b
|
||||||
|
|
||||||
|
sin_angle2 = sin(_angle_b)
|
||||||
|
|
||||||
|
var tri_adjacent = bone_a_len + bone_b_len * cos_angle2
|
||||||
|
var tri_opposite = bone_b_len * sin_angle2
|
||||||
|
|
||||||
|
var xform_inv = bone_a.get_parent().global_transform.affine_inverse()
|
||||||
|
var target_pos = xform_inv * target.global_position - bone_a.position
|
||||||
|
|
||||||
|
var tan_y = target_pos.y * tri_adjacent - target_pos.x * tri_opposite
|
||||||
|
var tan_x = target_pos.x * tri_adjacent + target_pos.y * tri_opposite
|
||||||
|
_angle_a = atan2(tan_y, tan_x)
|
||||||
|
|
||||||
|
var bone_a_angle = bone_a.get_bone_angle()
|
||||||
|
var bone_b_angle = bone_b.get_bone_angle()
|
||||||
|
bone_a.rotation = _angle_a - bone_a_angle
|
||||||
|
bone_b.rotation = _angle_b - angle_difference(bone_a_angle, bone_b_angle)
|
||||||
|
|
||||||
|
|
||||||
|
func _distance_squared_between(node_a: Node2D, node_b: Node2D) -> float:
|
||||||
|
return node_a.global_position.distance_squared_to(node_b.global_position)
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
uid://p5wxvjx24brs
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Godot.NET.Sdk/4.4.0">
|
<Project Sdk="Godot.NET.Sdk/4.5.1">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||||
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArea2D_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fefbd3244e8e427e388f389cc304f90548d56b58a375097a197ac2eb8259990bb_003FArea2D_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArea3D_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003F8a54226fa2e1c9371a8091f24cfd744aef11fe6869527dc23b9b837623a29b9_003FArea3D_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArea3D_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003F8a54226fa2e1c9371a8091f24cfd744aef11fe6869527dc23b9b837623a29b9_003FArea3D_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AAudioStreamPlayer2D_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2025_002E1_003Fresharper_002Dhost_003FSourcesCache_003F848324b1c23114c3f5e8bbb5a42c4ade394c59a7a7a133a66b76581ca571_003FAudioStreamPlayer2D_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AAudioStreamPlayer2D_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2025_002E1_003Fresharper_002Dhost_003FSourcesCache_003F848324b1c23114c3f5e8bbb5a42c4ade394c59a7a7a133a66b76581ca571_003FAudioStreamPlayer2D_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ABabushka_002Escripts_002ECSharp_002ECommon_002EFarming_002EFieldBehaviour2D_005FScriptMethods_002Egenerated_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F75d11718f1abbc2572fd32e4b83acbec9d79ac_003FBabushka_002Escripts_002ECSharp_002ECommon_002EFarming_002EFieldBehaviour2D_005FScriptMethods_002Egenerated_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ABabushka_002Escripts_002ECSharp_002ECommon_002EFarming_002EFieldBehaviour2D_005FScriptMethods_002Egenerated_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F75d11718f1abbc2572fd32e4b83acbec9d79ac_003FBabushka_002Escripts_002ECSharp_002ECommon_002EFarming_002EFieldBehaviour2D_005FScriptMethods_002Egenerated_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
|
|||||||
@@ -12,42 +12,34 @@
|
|||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_w535h"]
|
[sub_resource type="Resource" id="Resource_w535h"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_j3dy5"]
|
[sub_resource type="Resource" id="Resource_j3dy5"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("2_cpmol")
|
scene = ExtResource("2_cpmol")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_d5o1r"]
|
[sub_resource type="Resource" id="Resource_d5o1r"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("3_12uyf")
|
scene = ExtResource("3_12uyf")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_g7mor"]
|
[sub_resource type="Resource" id="Resource_g7mor"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("4_ncyk4")
|
scene = ExtResource("4_ncyk4")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_wgjgg"]
|
[sub_resource type="Resource" id="Resource_wgjgg"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("5_qg2g4")
|
scene = ExtResource("5_qg2g4")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_45hxc"]
|
[sub_resource type="Resource" id="Resource_45hxc"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("6_c5ex4")
|
scene = ExtResource("6_c5ex4")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_c53vn"]
|
[sub_resource type="Resource" id="Resource_c53vn"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("7_bopa1")
|
scene = ExtResource("7_bopa1")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_n6k7j"]
|
[sub_resource type="Resource" id="Resource_n6k7j"]
|
||||||
script = ExtResource("1_hr3vo")
|
script = ExtResource("1_hr3vo")
|
||||||
scene = ExtResource("8_oycnw")
|
scene = ExtResource("8_oycnw")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
script = ExtResource("9_i6i1n")
|
script = ExtResource("9_i6i1n")
|
||||||
@@ -63,6 +55,4 @@ layer_info = {
|
|||||||
"15": SubResource("Resource_c53vn"),
|
"15": SubResource("Resource_c53vn"),
|
||||||
"16": SubResource("Resource_n6k7j")
|
"16": SubResource("Resource_n6k7j")
|
||||||
}
|
}
|
||||||
base_overrides = {}
|
|
||||||
layers = Array[ExtResource("1_hr3vo")]([])
|
|
||||||
metadata/_latest_layer = ""
|
metadata/_latest_layer = ""
|
||||||
|
|||||||
|
After Width: | Height: | Size: 885 B |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cyfjhl5qp3lpj"
|
||||||
|
path="res://.godot/imported/next-indicator-dialogic-2.png-738692064a5e64a28dcba134b029afb9.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://addons/dialogic/Example Assets/next-indicator/next-indicator-dialogic-2.png"
|
||||||
|
dest_files=["res://.godot/imported/next-indicator-dialogic-2.png-738692064a5e64a28dcba134b029afb9.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
@@ -1,11 +1,16 @@
|
|||||||
[gd_resource type="StyleBoxFlat" format=3 uid="uid://dkv1pl1c1dq6"]
|
[gd_resource type="StyleBoxFlat" format=3 uid="uid://dkv1pl1c1dq6"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
content_margin_left = 15.0
|
content_margin_left = 100.0
|
||||||
content_margin_top = 15.0
|
content_margin_top = 80.0
|
||||||
content_margin_right = 15.0
|
content_margin_right = 100.0
|
||||||
content_margin_bottom = 15.0
|
content_margin_bottom = 30.0
|
||||||
bg_color = Color(1, 1, 1, 1)
|
bg_color = Color(1, 1, 1, 1)
|
||||||
|
border_width_left = 1
|
||||||
|
border_width_top = 1
|
||||||
|
border_width_right = 1
|
||||||
|
border_width_bottom = 1
|
||||||
|
border_color = Color(0.14509805, 0.09411765, 0.07058824, 1)
|
||||||
corner_radius_top_left = 5
|
corner_radius_top_left = 5
|
||||||
corner_radius_top_right = 5
|
corner_radius_top_right = 5
|
||||||
corner_radius_bottom_right = 5
|
corner_radius_bottom_right = 5
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[gd_resource type="Resource" script_class="DialogicStyle" load_steps=21 format=3 uid="uid://benfqi2myyn58"]
|
[gd_resource type="Resource" script_class="DialogicStyle" load_steps=20 format=3 uid="uid://benfqi2myyn58"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dfx2htp24tuvm" path="res://addons/dialogic/Resources/dialogic_style_layer.gd" id="1_kc0s3"]
|
[ext_resource type="Script" uid="uid://dfx2htp24tuvm" path="res://addons/dialogic/Resources/dialogic_style_layer.gd" id="1_kc0s3"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c1k5m0w3r40xf" path="res://addons/dialogic/Modules/DefaultLayoutParts/Layer_FullBackground/full_background_layer.tscn" id="2_wjopr"]
|
[ext_resource type="PackedScene" uid="uid://c1k5m0w3r40xf" path="res://addons/dialogic/Modules/DefaultLayoutParts/Layer_FullBackground/full_background_layer.tscn" id="2_wjopr"]
|
||||||
@@ -15,37 +15,48 @@
|
|||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
overrides = {
|
overrides = {
|
||||||
"global_bg_color": "Color(0.898039, 0.917647, 0.835294, 1)",
|
"global_bg_color": "Color(0.898039, 0.917647, 0.835294, 1)",
|
||||||
|
"global_font": "\"res://fonts/ShantellSans/static/ShantellSans-Regular.ttf\"",
|
||||||
"global_font_color": "Color(0.258824, 0.12549, 0.054902, 1)",
|
"global_font_color": "Color(0.258824, 0.12549, 0.054902, 1)",
|
||||||
"global_font_size": "30.0"
|
"global_font_size": "45.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_awdqn"]
|
[sub_resource type="Resource" id="Resource_awdqn"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("2_wjopr")
|
scene = ExtResource("2_wjopr")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_5pou4"]
|
[sub_resource type="Resource" id="Resource_5pou4"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("3_depsi")
|
scene = ExtResource("3_depsi")
|
||||||
overrides = {}
|
overrides = {
|
||||||
|
"portrait_size_mode": "0"
|
||||||
|
}
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_6xrvb"]
|
[sub_resource type="Resource" id="Resource_6xrvb"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("4_wy5ku")
|
scene = ExtResource("4_wy5ku")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_k1327"]
|
[sub_resource type="Resource" id="Resource_k1327"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("5_6srh5")
|
scene = ExtResource("5_6srh5")
|
||||||
overrides = {
|
overrides = {
|
||||||
|
"bold_font": "\"res://fonts/ShantellSans/static/ShantellSans-Bold.ttf\"",
|
||||||
|
"bold_italics_font": "\"res://fonts/ShantellSans/static/ShantellSans-BoldItalic.ttf\"",
|
||||||
"box_animation_in": "1",
|
"box_animation_in": "1",
|
||||||
"box_animation_out": "1",
|
"box_animation_out": "1",
|
||||||
|
"box_color_custom": "Color(0.88, 0.6688, 0.73568, 1)",
|
||||||
|
"box_color_use_global": "false",
|
||||||
"box_panel": "\"vn_textbox_default_panel.tres\"",
|
"box_panel": "\"vn_textbox_default_panel.tres\"",
|
||||||
|
"box_size": "Vector2(1920, 300)",
|
||||||
|
"italics_font": "\"res://fonts/ShantellSans/static/ShantellSans-Italic.ttf\"",
|
||||||
"name_label_box_modulate": "Color(1, 1, 1, 1)",
|
"name_label_box_modulate": "Color(1, 1, 1, 1)",
|
||||||
"name_label_box_panel": "\"res://dialog/Babushka_NPC_Namebox_background.tres\"",
|
"name_label_box_offset": "Vector2(200, 0)",
|
||||||
"name_label_custom_font_size": "30.0",
|
"name_label_box_panel": "\"Babushka_NPC_Namebox_background.tres\"",
|
||||||
|
"name_label_custom_font_size": "40.0",
|
||||||
|
"name_label_font": "\"res://fonts/HomemadeApple/HomemadeApple-Regular.ttf\"",
|
||||||
"name_label_use_global_color": "false",
|
"name_label_use_global_color": "false",
|
||||||
"next_indicator_enabled": "false",
|
"name_label_use_global_font": "false",
|
||||||
|
"next_indicator_texture": "\"res://addons/dialogic/Example Assets/next-indicator/next-indicator-dialogic-2.png\"",
|
||||||
|
"normal_font": "\"res://fonts/ShantellSans/static/ShantellSans-Regular.ttf\"",
|
||||||
"text_alignment": "1",
|
"text_alignment": "1",
|
||||||
"text_size": "40.0",
|
"text_size": "40.0",
|
||||||
"typing_sounds_end_sound": "\"res://audio/sfx/UI/Dialog/SFX_Dialog_Open_01.wav\"",
|
"typing_sounds_end_sound": "\"res://audio/sfx/UI/Dialog/SFX_Dialog_Open_01.wav\"",
|
||||||
@@ -55,7 +66,6 @@ overrides = {
|
|||||||
[sub_resource type="Resource" id="Resource_qtijl"]
|
[sub_resource type="Resource" id="Resource_qtijl"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("6_iipq0")
|
scene = ExtResource("6_iipq0")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_nalij"]
|
[sub_resource type="Resource" id="Resource_nalij"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
@@ -72,22 +82,15 @@ overrides = {
|
|||||||
[sub_resource type="Resource" id="Resource_ymn1b"]
|
[sub_resource type="Resource" id="Resource_ymn1b"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("8_4ig6v")
|
scene = ExtResource("8_4ig6v")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_8j3qh"]
|
[sub_resource type="Resource" id="Resource_8j3qh"]
|
||||||
script = ExtResource("1_kc0s3")
|
script = ExtResource("1_kc0s3")
|
||||||
scene = ExtResource("9_gni8k")
|
scene = ExtResource("9_gni8k")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_uu1x2"]
|
|
||||||
script = ExtResource("1_kc0s3")
|
|
||||||
scene = ExtResource("6_iipq0")
|
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
script = ExtResource("10_l174f")
|
script = ExtResource("10_l174f")
|
||||||
name = "vesna_style"
|
name = "vesna_style"
|
||||||
layer_list = Array[String](["10", "11", "12", "13", "14", "15", "16", "17", "18"])
|
layer_list = Array[String](["10", "11", "12", "13", "14", "15", "16", "17"])
|
||||||
layer_info = {
|
layer_info = {
|
||||||
"": SubResource("Resource_qnla8"),
|
"": SubResource("Resource_qnla8"),
|
||||||
"10": SubResource("Resource_awdqn"),
|
"10": SubResource("Resource_awdqn"),
|
||||||
@@ -97,9 +100,6 @@ layer_info = {
|
|||||||
"14": SubResource("Resource_qtijl"),
|
"14": SubResource("Resource_qtijl"),
|
||||||
"15": SubResource("Resource_nalij"),
|
"15": SubResource("Resource_nalij"),
|
||||||
"16": SubResource("Resource_ymn1b"),
|
"16": SubResource("Resource_ymn1b"),
|
||||||
"17": SubResource("Resource_8j3qh"),
|
"17": SubResource("Resource_8j3qh")
|
||||||
"18": SubResource("Resource_uu1x2")
|
|
||||||
}
|
}
|
||||||
base_overrides = {}
|
|
||||||
layers = Array[ExtResource("1_kc0s3")]([])
|
|
||||||
metadata/_latest_layer = "13"
|
metadata/_latest_layer = "13"
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.3 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://stexru1hfl0g"
|
||||||
|
path="res://.godot/imported/chugeist_Arms.png-e020fdb3f00a7939c26a3c678f834a6f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/Chuga Parts 2D/chugeist_Arms.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist_Arms.png-e020fdb3f00a7939c26a3c678f834a6f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 730 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://chedxr6kou034"
|
||||||
|
path="res://.godot/imported/chugeist_Hair.png-1f5d05ccd86a4a25b1dbda51024bd289.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/Chuga Parts 2D/chugeist_Hair.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist_Hair.png-1f5d05ccd86a4a25b1dbda51024bd289.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.5 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ldsllcwxhsgk"
|
||||||
|
path="res://.godot/imported/chugeist_Head.png-60572347a0b3f20c608ab120384e00ce.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/Chuga Parts 2D/chugeist_Head.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist_Head.png-60572347a0b3f20c608ab120384e00ce.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.1 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bpevmu5fq0j3c"
|
||||||
|
path="res://.godot/imported/chugeist_Legs.png-f5da318d8b316fb000d6b6c3a8b6b966.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/Chuga Parts 2D/chugeist_Legs.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist_Legs.png-f5da318d8b316fb000d6b6c3a8b6b966.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.1 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bq75ghtiefu28"
|
||||||
|
path="res://.godot/imported/chugeist_Torso.png-215ee6bbe3ab9ae64bdc98b299f677a7.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/Chuga Parts 2D/chugeist_Torso.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist_Torso.png-215ee6bbe3ab9ae64bdc98b299f677a7.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.3 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cfk0fey087wt2"
|
||||||
|
path="res://.godot/imported/ChugaBack.png-499f9c0a898bd4d03fb0c657c646f62c.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/ChugaBack.png"
|
||||||
|
dest_files=["res://.godot/imported/ChugaBack.png-499f9c0a898bd4d03fb0c657c646f62c.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 4.0 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://20dlga08j4ai"
|
||||||
|
path="res://.godot/imported/chugeist.png-df36362fa038656d9b1f7eb4992012db.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Chuga/chugeist.png"
|
||||||
|
dest_files=["res://.godot/imported/chugeist.png-df36362fa038656d9b1f7eb4992012db.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 671 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://fbqsf00v1rfk"
|
||||||
|
path="res://.godot/imported/Arms-0000.png-1437a7dc61e123c45e36779cffff9e76.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Arms-0000.png"
|
||||||
|
dest_files=["res://.godot/imported/Arms-0000.png-1437a7dc61e123c45e36779cffff9e76.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 595 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dk63xeqwu23aq"
|
||||||
|
path="res://.godot/imported/Arms-0001.png-1d74e1911ee7220ed9a63a247cba4369.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Arms-0001.png"
|
||||||
|
dest_files=["res://.godot/imported/Arms-0001.png-1d74e1911ee7220ed9a63a247cba4369.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 195 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://e7e74uwnap7s"
|
||||||
|
path="res://.godot/imported/Arms-Extra-0000.png-8ae550b7d00be5033b2efd4e97cc0acb.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Arms-Extra-0000.png"
|
||||||
|
dest_files=["res://.godot/imported/Arms-Extra-0000.png-8ae550b7d00be5033b2efd4e97cc0acb.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 152 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bd2vd6wt37eps"
|
||||||
|
path="res://.godot/imported/Arms-Extra-0001.png-046adcd4a781de10d63c86ba06644cd0.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Arms-Extra-0001.png"
|
||||||
|
dest_files=["res://.godot/imported/Arms-Extra-0001.png-046adcd4a781de10d63c86ba06644cd0.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 129 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b74gm2dafhvjd"
|
||||||
|
path="res://.godot/imported/Equipment.png-b3c17ac62a77f54ac90e50af109b2e03.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Equipment.png"
|
||||||
|
dest_files=["res://.godot/imported/Equipment.png-b3c17ac62a77f54ac90e50af109b2e03.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 57 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c5hn34t6sn3np"
|
||||||
|
path="res://.godot/imported/Eyes.png-1f73c400229abba23d90de2a49b0b019.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Eyes.png"
|
||||||
|
dest_files=["res://.godot/imported/Eyes.png-1f73c400229abba23d90de2a49b0b019.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c85kvblf6131t"
|
||||||
|
path="res://.godot/imported/Fingers.png-a4a648cd7e89d299af6096cc57f90b99.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Fingers.png"
|
||||||
|
dest_files=["res://.godot/imported/Fingers.png-a4a648cd7e89d299af6096cc57f90b99.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 87 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://l6wgqa40ia6b"
|
||||||
|
path="res://.godot/imported/Fist.png-adea619304faec9368ff2c3e9bedef8a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Fist.png"
|
||||||
|
dest_files=["res://.godot/imported/Fist.png-adea619304faec9368ff2c3e9bedef8a.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 339 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cgntreov1wb1y"
|
||||||
|
path="res://.godot/imported/Haare.png-bd08e4bc6030bdeeec53a2d7cf4e0815.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Haare.png"
|
||||||
|
dest_files=["res://.godot/imported/Haare.png-bd08e4bc6030bdeeec53a2d7cf4e0815.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.2 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c8ju8auestosf"
|
||||||
|
path="res://.godot/imported/Head.png-6462484cfb6b9d3ad0bbd495deb0e98e.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Head.png"
|
||||||
|
dest_files=["res://.godot/imported/Head.png-6462484cfb6b9d3ad0bbd495deb0e98e.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 569 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://drqjng2136kn2"
|
||||||
|
path="res://.godot/imported/Legs.png-11a98449aff8f7ca42e89b59fc2cfba3.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Legs.png"
|
||||||
|
dest_files=["res://.godot/imported/Legs.png-11a98449aff8f7ca42e89b59fc2cfba3.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 40 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cht6io8h8krfl"
|
||||||
|
path="res://.godot/imported/Pupillen.png-61a476317dab8e596a6241a1068dc9d0.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Pupillen.png"
|
||||||
|
dest_files=["res://.godot/imported/Pupillen.png-61a476317dab8e596a6241a1068dc9d0.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 505 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c78sn4bgthkej"
|
||||||
|
path="res://.godot/imported/Rucksack.png-9a83219ea2501fe5379d24bad891e5fc.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Rucksack.png"
|
||||||
|
dest_files=["res://.godot/imported/Rucksack.png-9a83219ea2501fe5379d24bad891e5fc.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.2 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dhubq74ck2ep7"
|
||||||
|
path="res://.godot/imported/Torso.png-9672286701ac9bce2f0cd92bf9878c25.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/Torso.png"
|
||||||
|
dest_files=["res://.godot/imported/Torso.png-9672286701ac9bce2f0cd92bf9878c25.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 269 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dwlu4bgeoy7w1"
|
||||||
|
path="res://.godot/imported/creepy moth shape.png-d69b08e0f1f0b6fa1e724556331947cf.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/creepy moth shape.png"
|
||||||
|
dest_files=["res://.godot/imported/creepy moth shape.png-d69b08e0f1f0b6fa1e724556331947cf.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 734 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dn2fvebssq8vs"
|
||||||
|
path="res://.godot/imported/vesna-more-tools.png-f74ef0c3556fadfff8abc4b58d51e40a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/Vesna_Parts/vesna-more-tools.png"
|
||||||
|
dest_files=["res://.godot/imported/vesna-more-tools.png-f74ef0c3556fadfff8abc4b58d51e40a.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 216 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://lnwc1ojnpw47"
|
||||||
|
path="res://.godot/imported/image (2).png-7fb5f3cb35ee7eb17ff0300b469e413e.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Vesna/image (2).png"
|
||||||
|
dest_files=["res://.godot/imported/image (2).png-7fb5f3cb35ee7eb17ff0300b469e413e.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 641 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bmpy202sg7c8n"
|
||||||
|
path="res://.godot/imported/Yeli_Arms.png-2c9fc9da02cf909bbfa5eaed3cfbc5aa.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/Yeli Parts/Yeli_Arms.png"
|
||||||
|
dest_files=["res://.godot/imported/Yeli_Arms.png-2c9fc9da02cf909bbfa5eaed3cfbc5aa.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.8 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dl5um6p3dejqi"
|
||||||
|
path="res://.godot/imported/Yeli_Body.png-c387ade1c7f6d801d40890fafd8ce545.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/Yeli Parts/Yeli_Body.png"
|
||||||
|
dest_files=["res://.godot/imported/Yeli_Body.png-c387ade1c7f6d801d40890fafd8ce545.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 1.4 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cstgevlfj06lb"
|
||||||
|
path="res://.godot/imported/Yeli_Head.png-c3c2784d97b8871f2d1a953e8af87cbe.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/Yeli Parts/Yeli_Head.png"
|
||||||
|
dest_files=["res://.godot/imported/Yeli_Head.png-c3c2784d97b8871f2d1a953e8af87cbe.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 213 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ukw48owrkygy"
|
||||||
|
path="res://.godot/imported/Yeli_Legs.png-568b1ef7f0ac735c93249496ad897588.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/Yeli Parts/Yeli_Legs.png"
|
||||||
|
dest_files=["res://.godot/imported/Yeli_Legs.png-568b1ef7f0ac735c93249496ad897588.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 38 KiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bw5qjv458161u"
|
||||||
|
path="res://.godot/imported/Yeli_Mouth.png-db124cb9b6be4e4a0b81df050d8e5ff9.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/Yeli Parts/Yeli_Mouth.png"
|
||||||
|
dest_files=["res://.godot/imported/Yeli_Mouth.png-db124cb9b6be4e4a0b81df050d8e5ff9.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
After Width: | Height: | Size: 3.1 MiB |
@@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dg4ve6gm5cbct"
|
||||||
|
path="res://.godot/imported/yeli.png-5d40f305a5a927b68a21c8f50eac07b3.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://art/animation/2D skeletial chars/Yeli/yeli.png"
|
||||||
|
dest_files=["res://.godot/imported/yeli.png-5d40f305a5a927b68a21c8f50eac07b3.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://dxwk1ejffdw3h"
|
||||||
|
path="res://.godot/imported/SFX_Wolf_Growl_01.wav-67db69a1d0f60baabdefb33b3eff1d98.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://audio/sfx/Animals/SFX_Wolf_Growl_01.wav"
|
||||||
|
dest_files=["res://.godot/imported/SFX_Wolf_Growl_01.wav-67db69a1d0f60baabdefb33b3eff1d98.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://bpyx7ojot0bj0"
|
||||||
|
path="res://.godot/imported/SFX_Wolf_Growl_02.wav-676e19b0590e3046f1201fe055645a5c.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://audio/sfx/Animals/SFX_Wolf_Growl_02.wav"
|
||||||
|
dest_files=["res://.godot/imported/SFX_Wolf_Growl_02.wav-676e19b0590e3046f1201fe055645a5c.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://coarhphswcu2i"
|
||||||
|
path="res://.godot/imported/SFX_Wolf_Howl_03.wav-b12e58ebc8cc7b3d5e49b721db468940.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://audio/sfx/Animals/SFX_Wolf_Howl_03.wav"
|
||||||
|
dest_files=["res://.godot/imported/SFX_Wolf_Howl_03.wav-b12e58ebc8cc7b3d5e49b721db468940.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -3,9 +3,10 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://deitc84w2byyh" path="res://art/ui/nametag.png" id="1_jsn7j"]
|
[ext_resource type="Texture2D" uid="uid://deitc84w2byyh" path="res://art/ui/nametag.png" id="1_jsn7j"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
content_margin_left = 40.0
|
content_margin_left = 100.0
|
||||||
content_margin_right = 40.0
|
content_margin_right = 100.0
|
||||||
texture = ExtResource("1_jsn7j")
|
texture = ExtResource("1_jsn7j")
|
||||||
texture_margin_left = 20.0
|
texture_margin_left = 20.0
|
||||||
texture_margin_right = 20.0
|
texture_margin_right = 20.0
|
||||||
axis_stretch_vertical = 2
|
axis_stretch_vertical = 2
|
||||||
|
region_rect = Rect2(0, 0, 1119, 132)
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
"image": "\"res://art/characters/yeli animierbar/yeli_part_side.png\""
|
"image": "\"res://art/characters/yeli animierbar/yeli_part_side.png\""
|
||||||
},
|
},
|
||||||
"mirror": true,
|
"mirror": true,
|
||||||
"offset": Vector2(0, 0),
|
"offset": Vector2(-150, 0),
|
||||||
"scale": 1.0,
|
"scale": 1.0,
|
||||||
"scene": ""
|
"scene": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
"style": "vesna_style"
|
"style": "vesna_style"
|
||||||
},
|
},
|
||||||
&"default_portrait": "front",
|
&"default_portrait": "half side",
|
||||||
&"description": "The main character. ",
|
&"description": "The main character. ",
|
||||||
&"display_name": "Vesna",
|
&"display_name": "Vesna",
|
||||||
&"mirror": false,
|
&"mirror": false,
|
||||||
@@ -31,8 +31,8 @@
|
|||||||
"image": "\"res://art/animation/Vesna2D/Vesna Anims Sequences/F01-Idle/0001.png\""
|
"image": "\"res://art/animation/Vesna2D/Vesna Anims Sequences/F01-Idle/0001.png\""
|
||||||
},
|
},
|
||||||
"mirror": false,
|
"mirror": false,
|
||||||
"offset": Vector2(0, 0),
|
"offset": Vector2(150, 0),
|
||||||
"scale": 0.6,
|
"scale": 0.8,
|
||||||
"scene": ""
|
"scene": ""
|
||||||
},
|
},
|
||||||
"half side": {
|
"half side": {
|
||||||
@@ -40,8 +40,17 @@
|
|||||||
"image": "\"res://art/animation/Vesna2D/Vesna Anims Sequences/D05-Talk/0001.png\""
|
"image": "\"res://art/animation/Vesna2D/Vesna Anims Sequences/D05-Talk/0001.png\""
|
||||||
},
|
},
|
||||||
"mirror": false,
|
"mirror": false,
|
||||||
|
"offset": Vector2(150, 0),
|
||||||
|
"scale": 0.8,
|
||||||
|
"scene": ""
|
||||||
|
},
|
||||||
|
"mute": {
|
||||||
|
"export_overrides": {
|
||||||
|
"image": ""
|
||||||
|
},
|
||||||
|
"mirror": false,
|
||||||
"offset": Vector2(0, 0),
|
"offset": Vector2(0, 0),
|
||||||
"scale": 0.6,
|
"scale": 1.0,
|
||||||
"scene": ""
|
"scene": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[gd_resource type="Resource" script_class="DialogicStyle" load_steps=22 format=3 uid="uid://f7q6jac5tsk8"]
|
[gd_resource type="Resource" script_class="DialogicStyle" load_steps=21 format=3 uid="uid://f7q6jac5tsk8"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dfx2htp24tuvm" path="res://addons/dialogic/Resources/dialogic_style_layer.gd" id="1_0jwhi"]
|
[ext_resource type="Script" uid="uid://dfx2htp24tuvm" path="res://addons/dialogic/Resources/dialogic_style_layer.gd" id="1_0jwhi"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cqpb3ie51rwl5" path="res://addons/dialogic/Modules/DefaultLayoutParts/Base_Default/default_layout_base.tscn" id="1_8wrfq"]
|
[ext_resource type="PackedScene" uid="uid://cqpb3ie51rwl5" path="res://addons/dialogic/Modules/DefaultLayoutParts/Base_Default/default_layout_base.tscn" id="1_8wrfq"]
|
||||||
@@ -17,40 +17,51 @@ script = ExtResource("1_0jwhi")
|
|||||||
scene = ExtResource("1_8wrfq")
|
scene = ExtResource("1_8wrfq")
|
||||||
overrides = {
|
overrides = {
|
||||||
"global_bg_color": "Color(0.898375, 0.917922, 0.835355, 1)",
|
"global_bg_color": "Color(0.898375, 0.917922, 0.835355, 1)",
|
||||||
|
"global_font": "\"res://fonts/ShantellSans/static/ShantellSans-Regular.ttf\"",
|
||||||
"global_font_color": "Color(0.257812, 0.125248, 0.0533752, 1)",
|
"global_font_color": "Color(0.257812, 0.125248, 0.0533752, 1)",
|
||||||
"global_font_size": "30.0"
|
"global_font_size": "45.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_uxnk3"]
|
[sub_resource type="Resource" id="Resource_uxnk3"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("2_8wrfq")
|
scene = ExtResource("2_8wrfq")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_ihoat"]
|
[sub_resource type="Resource" id="Resource_ihoat"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("3_t7aeg")
|
scene = ExtResource("3_t7aeg")
|
||||||
overrides = {}
|
overrides = {
|
||||||
|
"portrait_size_mode": "0"
|
||||||
|
}
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_pw0bl"]
|
[sub_resource type="Resource" id="Resource_pw0bl"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("4_85y6g")
|
scene = ExtResource("4_85y6g")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_lfav5"]
|
[sub_resource type="Resource" id="Resource_lfav5"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("5_reo2u")
|
scene = ExtResource("5_reo2u")
|
||||||
overrides = {
|
overrides = {
|
||||||
|
"bold_font": "\"res://fonts/ShantellSans/static/ShantellSans-Bold.ttf\"",
|
||||||
|
"bold_italics_font": "\"res://fonts/ShantellSans/static/ShantellSans-BoldItalic.ttf\"",
|
||||||
"box_animation_in": "1",
|
"box_animation_in": "1",
|
||||||
"box_animation_out": "1",
|
"box_animation_out": "1",
|
||||||
"box_panel": "\"vn_textbox_default_panel.tres\"",
|
"box_panel": "\"vn_textbox_default_panel.tres\"",
|
||||||
|
"box_size": "Vector2(1920, 300)",
|
||||||
|
"italics_font": "\"res://fonts/ShantellSans/static/ShantellSans-Italic.ttf\"",
|
||||||
"name_label_alignment": "2",
|
"name_label_alignment": "2",
|
||||||
"name_label_box_modulate": "Color(1, 1, 1, 1)",
|
"name_label_box_modulate": "Color(1, 1, 1, 1)",
|
||||||
|
"name_label_box_offset": "Vector2(-200, 0)",
|
||||||
"name_label_box_panel": "\"res://dialog/Babushka_NPC_Namebox_background.tres\"",
|
"name_label_box_panel": "\"res://dialog/Babushka_NPC_Namebox_background.tres\"",
|
||||||
"name_label_custom_font_size": "30.0",
|
"name_label_custom_font_size": "30.0",
|
||||||
|
"name_label_font": "\"res://fonts/HomemadeApple/HomemadeApple-Regular.ttf\"",
|
||||||
"name_label_use_global_color": "false",
|
"name_label_use_global_color": "false",
|
||||||
"next_indicator_enabled": "false",
|
"name_label_use_global_font": "false",
|
||||||
|
"next_indicator_texture": "\"res://addons/dialogic/Example Assets/next-indicator/next-indicator-dialogic-2.png\"",
|
||||||
|
"normal_font": "\"res://fonts/ShantellSans/static/ShantellSans-Regular.ttf\"",
|
||||||
"text_alignment": "1",
|
"text_alignment": "1",
|
||||||
|
"text_custom_color": "Color(0.8980392, 0.91764706, 0.8352941, 1)",
|
||||||
"text_size": "40.0",
|
"text_size": "40.0",
|
||||||
|
"text_use_global_font": "false",
|
||||||
"typing_sounds_end_sound": "\"res://audio/sfx/UI/Dialog/SFX_Dialog_Open_01.wav\"",
|
"typing_sounds_end_sound": "\"res://audio/sfx/UI/Dialog/SFX_Dialog_Open_01.wav\"",
|
||||||
"typing_sounds_sounds_folder": "\"res://audio/sfx/typing\""
|
"typing_sounds_sounds_folder": "\"res://audio/sfx/typing\""
|
||||||
}
|
}
|
||||||
@@ -58,7 +69,6 @@ overrides = {
|
|||||||
[sub_resource type="Resource" id="Resource_clhbu"]
|
[sub_resource type="Resource" id="Resource_clhbu"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("6_i6h15")
|
scene = ExtResource("6_i6h15")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_umvdi"]
|
[sub_resource type="Resource" id="Resource_umvdi"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
@@ -75,22 +85,15 @@ overrides = {
|
|||||||
[sub_resource type="Resource" id="Resource_ci2ul"]
|
[sub_resource type="Resource" id="Resource_ci2ul"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("8_h83v4")
|
scene = ExtResource("8_h83v4")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_sadu5"]
|
[sub_resource type="Resource" id="Resource_sadu5"]
|
||||||
script = ExtResource("1_0jwhi")
|
script = ExtResource("1_0jwhi")
|
||||||
scene = ExtResource("9_4c2uo")
|
scene = ExtResource("9_4c2uo")
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_0jwhi"]
|
|
||||||
script = ExtResource("1_0jwhi")
|
|
||||||
scene = ExtResource("6_i6h15")
|
|
||||||
overrides = {}
|
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
script = ExtResource("10_e3ue2")
|
script = ExtResource("10_e3ue2")
|
||||||
name = "NPC_narrative"
|
name = "NPC_narrative"
|
||||||
layer_list = Array[String](["10", "11", "12", "13", "14", "15", "16", "17", "18"])
|
layer_list = Array[String](["10", "11", "12", "13", "14", "15", "16", "17"])
|
||||||
layer_info = {
|
layer_info = {
|
||||||
"": SubResource("Resource_wg0yj"),
|
"": SubResource("Resource_wg0yj"),
|
||||||
"10": SubResource("Resource_uxnk3"),
|
"10": SubResource("Resource_uxnk3"),
|
||||||
@@ -100,9 +103,6 @@ layer_info = {
|
|||||||
"14": SubResource("Resource_clhbu"),
|
"14": SubResource("Resource_clhbu"),
|
||||||
"15": SubResource("Resource_umvdi"),
|
"15": SubResource("Resource_umvdi"),
|
||||||
"16": SubResource("Resource_ci2ul"),
|
"16": SubResource("Resource_ci2ul"),
|
||||||
"17": SubResource("Resource_sadu5"),
|
"17": SubResource("Resource_sadu5")
|
||||||
"18": SubResource("Resource_0jwhi")
|
|
||||||
}
|
}
|
||||||
base_overrides = {}
|
metadata/_latest_layer = "14"
|
||||||
layers = Array[ExtResource("1_0jwhi")]([])
|
|
||||||
metadata/_latest_layer = "13"
|
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="font_data_dynamic"
|
||||||
|
type="FontFile"
|
||||||
|
uid="uid://dim0a0ua8kc10"
|
||||||
|
path="res://.godot/imported/BethEllen-Regular.ttf-8e5540afad1b0780f21ad9677ef53188.fontdata"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://fonts/BethEllen/BethEllen-Regular.ttf"
|
||||||
|
dest_files=["res://.godot/imported/BethEllen-Regular.ttf-8e5540afad1b0780f21ad9677ef53188.fontdata"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
Rendering=null
|
||||||
|
antialiasing=1
|
||||||
|
generate_mipmaps=false
|
||||||
|
disable_embedded_bitmaps=true
|
||||||
|
multichannel_signed_distance_field=false
|
||||||
|
msdf_pixel_range=8
|
||||||
|
msdf_size=48
|
||||||
|
allow_system_fallback=true
|
||||||
|
force_autohinter=false
|
||||||
|
modulate_color_glyphs=false
|
||||||
|
hinting=1
|
||||||
|
subpixel_positioning=4
|
||||||
|
keep_rounding_remainders=true
|
||||||
|
oversampling=0.0
|
||||||
|
Fallbacks=null
|
||||||
|
fallbacks=[]
|
||||||
|
Compress=null
|
||||||
|
compress=true
|
||||||
|
preload=[]
|
||||||
|
language_support={}
|
||||||
|
script_support={}
|
||||||
|
opentype_features={}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright 2018 The Beth Ellen Project Authors (https://github.com/googlefonts/BethEllen)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="font_data_dynamic"
|
||||||
|
type="FontFile"
|
||||||
|
uid="uid://cq2rtq1scnthq"
|
||||||
|
path="res://.godot/imported/HomemadeApple-Regular.ttf-6bb8354a70dbee19d4fd895e997bceed.fontdata"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://fonts/HomemadeApple/HomemadeApple-Regular.ttf"
|
||||||
|
dest_files=["res://.godot/imported/HomemadeApple-Regular.ttf-6bb8354a70dbee19d4fd895e997bceed.fontdata"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
Rendering=null
|
||||||
|
antialiasing=1
|
||||||
|
generate_mipmaps=false
|
||||||
|
disable_embedded_bitmaps=true
|
||||||
|
multichannel_signed_distance_field=false
|
||||||
|
msdf_pixel_range=8
|
||||||
|
msdf_size=48
|
||||||
|
allow_system_fallback=true
|
||||||
|
force_autohinter=false
|
||||||
|
modulate_color_glyphs=false
|
||||||
|
hinting=1
|
||||||
|
subpixel_positioning=4
|
||||||
|
keep_rounding_remainders=true
|
||||||
|
oversampling=0.0
|
||||||
|
Fallbacks=null
|
||||||
|
fallbacks=[]
|
||||||
|
Compress=null
|
||||||
|
compress=true
|
||||||
|
preload=[]
|
||||||
|
language_support={}
|
||||||
|
script_support={}
|
||||||
|
opentype_features={}
|
||||||
@@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright 2022 The Shantell Sans Project Authors (https://github.com/arrowtype/shantell-sans)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
Shantell Sans Variable Font
|
||||||
|
===========================
|
||||||
|
|
||||||
|
This download contains Shantell Sans as both variable fonts and static fonts.
|
||||||
|
|
||||||
|
Shantell Sans is a variable font with these axes:
|
||||||
|
BNCE
|
||||||
|
INFM
|
||||||
|
SPAC
|
||||||
|
wght
|
||||||
|
|
||||||
|
This means all the styles are contained in these files:
|
||||||
|
ShantellSans-VariableFont_BNCE,INFM,SPAC,wght.ttf
|
||||||
|
ShantellSans-Italic-VariableFont_BNCE,INFM,SPAC,wght.ttf
|
||||||
|
|
||||||
|
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||||
|
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||||
|
in those cases you can use the static font files for Shantell Sans:
|
||||||
|
static/ShantellSans-Light.ttf
|
||||||
|
static/ShantellSans-Regular.ttf
|
||||||
|
static/ShantellSans-Medium.ttf
|
||||||
|
static/ShantellSans-SemiBold.ttf
|
||||||
|
static/ShantellSans-Bold.ttf
|
||||||
|
static/ShantellSans-ExtraBold.ttf
|
||||||
|
static/ShantellSans-LightItalic.ttf
|
||||||
|
static/ShantellSans-Italic.ttf
|
||||||
|
static/ShantellSans-MediumItalic.ttf
|
||||||
|
static/ShantellSans-SemiBoldItalic.ttf
|
||||||
|
static/ShantellSans-BoldItalic.ttf
|
||||||
|
static/ShantellSans-ExtraBoldItalic.ttf
|
||||||
|
|
||||||
|
Get started
|
||||||
|
-----------
|
||||||
|
|
||||||
|
1. Install the font files you want to use
|
||||||
|
|
||||||
|
2. Use your app's font picker to view the font family and all the
|
||||||
|
available styles
|
||||||
|
|
||||||
|
Learn more about variable fonts
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||||
|
https://variablefonts.typenetwork.com
|
||||||
|
https://medium.com/variable-fonts
|
||||||
|
|
||||||
|
In desktop apps
|
||||||
|
|
||||||
|
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||||
|
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||||
|
|
||||||
|
Online
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/getting_started
|
||||||
|
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||||
|
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||||
|
|
||||||
|
Installing fonts
|
||||||
|
|
||||||
|
MacOS: https://support.apple.com/en-us/HT201749
|
||||||
|
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||||
|
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||||
|
|
||||||
|
Android Apps
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/android
|
||||||
|
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
Please read the full license text (OFL.txt) to understand the permissions,
|
||||||
|
restrictions and requirements for usage, redistribution, and modification.
|
||||||
|
|
||||||
|
You can use them in your products & projects – print or digital,
|
||||||
|
commercial or otherwise.
|
||||||
|
|
||||||
|
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||||
|
license for all details.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="font_data_dynamic"
|
||||||
|
type="FontFile"
|
||||||
|
uid="uid://bevsrffxmf7rn"
|
||||||
|
path="res://.godot/imported/ShantellSans-Italic-VariableFont_BNCE,INFM,SPAC,wght.ttf-51a4d899506b814a6f49255a510e55e8.fontdata"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://fonts/ShantellSans/ShantellSans-Italic-VariableFont_BNCE,INFM,SPAC,wght.ttf"
|
||||||
|
dest_files=["res://.godot/imported/ShantellSans-Italic-VariableFont_BNCE,INFM,SPAC,wght.ttf-51a4d899506b814a6f49255a510e55e8.fontdata"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
Rendering=null
|
||||||
|
antialiasing=1
|
||||||
|
generate_mipmaps=false
|
||||||
|
disable_embedded_bitmaps=true
|
||||||
|
multichannel_signed_distance_field=false
|
||||||
|
msdf_pixel_range=8
|
||||||
|
msdf_size=48
|
||||||
|
allow_system_fallback=true
|
||||||
|
force_autohinter=false
|
||||||
|
modulate_color_glyphs=false
|
||||||
|
hinting=1
|
||||||
|
subpixel_positioning=4
|
||||||
|
keep_rounding_remainders=true
|
||||||
|
oversampling=0.0
|
||||||
|
Fallbacks=null
|
||||||
|
fallbacks=[]
|
||||||
|
Compress=null
|
||||||
|
compress=true
|
||||||
|
preload=[]
|
||||||
|
language_support={}
|
||||||
|
script_support={}
|
||||||
|
opentype_features={}
|
||||||