Skip to content

Commit

Permalink
upraded all scripts to work in 4.X
Browse files Browse the repository at this point in the history
  • Loading branch information
kyperbelt committed Jan 13, 2024
1 parent 565e32d commit 2946bb5
Show file tree
Hide file tree
Showing 34 changed files with 1,068 additions and 1,091 deletions.
20 changes: 18 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

.projectile
### Godot ###
# Godot 4+ specific ignores
.godot/

# Godot-specific ignores
.import/
Expand All @@ -13,11 +15,25 @@ export_presets.cfg
# Mono-specific ignores
.mono/
data_*/
mono_crash.*.json

### vscode ###
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide

# End of https://www.toptal.com/developers/gitignore/api/godot,visualstudiocode
1 change: 1 addition & 0 deletions .godot/editor/create_recent.Node
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
VariableStorage
HSeparator
Button
TextureButton
Expand Down
26 changes: 0 additions & 26 deletions .godot/editor/editor_layout.cfg

This file was deleted.

155 changes: 0 additions & 155 deletions .godot/editor/filesystem_cache8

This file was deleted.

4 changes: 0 additions & 4 deletions .godot/editor/filesystem_update4

This file was deleted.

21 changes: 0 additions & 21 deletions .godot/editor/project_metadata.cfg

This file was deleted.

41 changes: 0 additions & 41 deletions .godot/editor/script_editor_cache.cfg

This file was deleted.

42 changes: 39 additions & 3 deletions .godot/global_script_class_cache.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
list=Array[Dictionary]([{
"base": &"Object",
"class": &"CompiledYarnNode",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/program/yarn_node.gd"
}, {
"base": &"RefCounted",
"class": &"FunctionInfo",
"icon": "",
Expand Down Expand Up @@ -61,12 +67,24 @@ list=Array[Dictionary]([{
}, {
"base": &"Node",
"class": &"VariableStorage",
"icon": "",
"icon": "res://addons/gdyarn/assets/storage.png",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/variable_storage.gd"
}, {
"base": &"Object",
"class": &"VirtualMachine",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/virtual_machine.gd"
}, {
"base": &"RefCounted",
"class": &"YarnCompiler",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/compiler/compiler.gd"
}, {
"base": &"RefCounted",
"class": &"YarnDIalogue",
"class": &"YarnDialogue",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/dialogue.gd"
Expand All @@ -77,13 +95,31 @@ list=Array[Dictionary]([{
"language": &"GDScript",
"path": "res://addons/gdyarn/utils/yarn_globals.gd"
}, {
"base": &"RefCounted",
"base": &"Object",
"class": &"YarnInstruction",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/program/instruction.gd"
}, {
"base": &"Object",
"class": &"YarnLexer",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/compiler/lexer.gd"
}, {
"base": &"RefCounted",
"class": &"YarnParser",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/compiler/parser.gd"
}, {
"base": &"Resource",
"class": &"YarnProgram",
"icon": "",
"language": &"GDScript",
"path": "res://addons/gdyarn/core/program/program.gd"
}, {
"base": &"RefCounted",
"class": &"YarnUtils",
"icon": "",
"language": &"GDScript",
Expand Down
Binary file removed .godot/uid_cache.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion .gut_editor_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"junit_xml_timestamp": false,
"log_level": 3,
"opacity": 100,
"paint_after": 0.1,
"paint_after": 0.05,
"panel_options": {
"font_name": "CourierPrime",
"font_size": 30,
Expand Down
16 changes: 16 additions & 0 deletions .gutconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"dirs":["res://test/"],
"double_strategy":"partial",
"ignore_pause":false,
"include_subdirs":true,
"inner_class":"",
"log_level":3,
"opacity":100,
"prefix":"test_",
"selected":"",
"should_exit":true,
"should_maximize":true,
"suffix":".gd",
"tests":[],
"unit_test_name":"",
}
Loading

0 comments on commit 2946bb5

Please sign in to comment.