Skip to content

Commit 2946bb5

Browse files
committed
upraded all scripts to work in 4.X
1 parent 565e32d commit 2946bb5

34 files changed

+1068
-1091
lines changed

.gitignore

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
.projectile
33
### Godot ###
4+
# Godot 4+ specific ignores
5+
.godot/
46

57
# Godot-specific ignores
68
.import/
@@ -13,11 +15,25 @@ export_presets.cfg
1315
# Mono-specific ignores
1416
.mono/
1517
data_*/
18+
mono_crash.*.json
1619

17-
### vscode ###
20+
### VisualStudioCode ###
1821
.vscode/*
1922
!.vscode/settings.json
2023
!.vscode/tasks.json
2124
!.vscode/launch.json
2225
!.vscode/extensions.json
23-
*.code-workspace
26+
!.vscode/*.code-snippets
27+
28+
# Local History for Visual Studio Code
29+
.history/
30+
31+
# Built Visual Studio Code Extensions
32+
*.vsix
33+
34+
### VisualStudioCode Patch ###
35+
# Ignore all local history of files
36+
.history
37+
.ionide
38+
39+
# End of https://www.toptal.com/developers/gitignore/api/godot,visualstudiocode

.godot/editor/create_recent.Node

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
VariableStorage
12
HSeparator
23
Button
34
TextureButton

.godot/editor/editor_layout.cfg

Lines changed: 0 additions & 26 deletions
This file was deleted.

.godot/editor/filesystem_cache8

Lines changed: 0 additions & 155 deletions
This file was deleted.

.godot/editor/filesystem_update4

Lines changed: 0 additions & 4 deletions
This file was deleted.

.godot/editor/project_metadata.cfg

Lines changed: 0 additions & 21 deletions
This file was deleted.

.godot/editor/script_editor_cache.cfg

Lines changed: 0 additions & 41 deletions
This file was deleted.

.godot/global_script_class_cache.cfg

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
list=Array[Dictionary]([{
2+
"base": &"Object",
3+
"class": &"CompiledYarnNode",
4+
"icon": "",
5+
"language": &"GDScript",
6+
"path": "res://addons/gdyarn/core/program/yarn_node.gd"
7+
}, {
28
"base": &"RefCounted",
39
"class": &"FunctionInfo",
410
"icon": "",
@@ -61,12 +67,24 @@ list=Array[Dictionary]([{
6167
}, {
6268
"base": &"Node",
6369
"class": &"VariableStorage",
64-
"icon": "",
70+
"icon": "res://addons/gdyarn/assets/storage.png",
6571
"language": &"GDScript",
6672
"path": "res://addons/gdyarn/core/variable_storage.gd"
6773
}, {
74+
"base": &"Object",
75+
"class": &"VirtualMachine",
76+
"icon": "",
77+
"language": &"GDScript",
78+
"path": "res://addons/gdyarn/core/virtual_machine.gd"
79+
}, {
80+
"base": &"RefCounted",
81+
"class": &"YarnCompiler",
82+
"icon": "",
83+
"language": &"GDScript",
84+
"path": "res://addons/gdyarn/core/compiler/compiler.gd"
85+
}, {
6886
"base": &"RefCounted",
69-
"class": &"YarnDIalogue",
87+
"class": &"YarnDialogue",
7088
"icon": "",
7189
"language": &"GDScript",
7290
"path": "res://addons/gdyarn/core/dialogue.gd"
@@ -77,13 +95,31 @@ list=Array[Dictionary]([{
7795
"language": &"GDScript",
7896
"path": "res://addons/gdyarn/utils/yarn_globals.gd"
7997
}, {
80-
"base": &"RefCounted",
98+
"base": &"Object",
99+
"class": &"YarnInstruction",
100+
"icon": "",
101+
"language": &"GDScript",
102+
"path": "res://addons/gdyarn/core/program/instruction.gd"
103+
}, {
104+
"base": &"Object",
81105
"class": &"YarnLexer",
82106
"icon": "",
83107
"language": &"GDScript",
84108
"path": "res://addons/gdyarn/core/compiler/lexer.gd"
85109
}, {
86110
"base": &"RefCounted",
111+
"class": &"YarnParser",
112+
"icon": "",
113+
"language": &"GDScript",
114+
"path": "res://addons/gdyarn/core/compiler/parser.gd"
115+
}, {
116+
"base": &"Resource",
117+
"class": &"YarnProgram",
118+
"icon": "",
119+
"language": &"GDScript",
120+
"path": "res://addons/gdyarn/core/program/program.gd"
121+
}, {
122+
"base": &"RefCounted",
87123
"class": &"YarnUtils",
88124
"icon": "",
89125
"language": &"GDScript",

.godot/uid_cache.bin

-1.86 KB
Binary file not shown.

.gut_editor_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"junit_xml_timestamp": false,
2020
"log_level": 3,
2121
"opacity": 100,
22-
"paint_after": 0.1,
22+
"paint_after": 0.05,
2323
"panel_options": {
2424
"font_name": "CourierPrime",
2525
"font_size": 30,

0 commit comments

Comments
 (0)