Skip to content

Commit 0c55ae4

Browse files
committed
restructure project
1 parent 59d19b5 commit 0c55ae4

16 files changed

+261
-69
lines changed
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[remap]
2+
3+
importer="texture"
4+
type="CompressedTexture2D"
5+
uid="uid://dplw232htshgc"
6+
path="res://.godot/imported/godot-llama-cpp-1024x1024.svg-0f412fe282a705cdf65256e51c97ddd2.ctex"
7+
metadata={
8+
"vram_texture": false
9+
}
10+
11+
[deps]
12+
13+
source_file="res://addons/godot-llama-cpp/assets/godot-llama-cpp-1024x1024.svg"
14+
dest_files=["res://.godot/imported/godot-llama-cpp-1024x1024.svg-0f412fe282a705cdf65256e51c97ddd2.ctex"]
15+
16+
[params]
17+
18+
compress/mode=0
19+
compress/high_quality=false
20+
compress/lossy_quality=0.7
21+
compress/hdr_compression=1
22+
compress/normal_map=0
23+
compress/channel_pack=0
24+
mipmaps/generate=false
25+
mipmaps/limit=-1
26+
roughness/mode=0
27+
roughness/src_normal=""
28+
process/fix_alpha_border=true
29+
process/premult_alpha=false
30+
process/normal_map_invert_y=false
31+
process/hdr_as_srgb=false
32+
process/hdr_clamp_exposure=false
33+
process/size_limit=0
34+
detect_3d/compress_to=1
35+
svg/scale=1.0
36+
editor/scale_with_editor_scale=false
37+
editor/convert_colors_with_editor_theme=false
Loading

godot/huggingface.svg.import godot/addons/godot-llama-cpp/assets/godot-llama-cpp-16x16.svg.import

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
importer="texture"
44
type="CompressedTexture2D"
5-
uid="uid://dhjbdhto6je6g"
6-
path="res://.godot/imported/huggingface.svg-9363a2c9e9c5c727088a277ba09b758a.ctex"
5+
uid="uid://du1ewals7kll1"
6+
path="res://.godot/imported/godot-llama-cpp-16x16.svg-65f33723bf99167c9acd957fe1b937f8.ctex"
77
metadata={
88
"vram_texture": false
99
}
1010

1111
[deps]
1212

13-
source_file="res://huggingface.svg"
14-
dest_files=["res://.godot/imported/huggingface.svg-9363a2c9e9c5c727088a277ba09b758a.ctex"]
13+
source_file="res://addons/godot-llama-cpp/assets/godot-llama-cpp-16x16.svg"
14+
dest_files=["res://.godot/imported/godot-llama-cpp-16x16.svg-65f33723bf99167c9acd957fe1b937f8.ctex"]
1515

1616
[params]
1717

godot/addons/godot-llama-cpp/godot-llama-cpp.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ extends EditorPlugin
44

55
func _enter_tree():
66
# Initialization of the plugin goes here.
7-
add_autoload_singleton("__LlamaBackendAutoload", "res://addons/godot-llama-cpp/llama-backend-autoload.gd")
7+
add_autoload_singleton("__LlamaBackendAutoload", "res://addons/godot-llama-cpp/autoloads/llama-backend-autoload.gd")
88

99

1010
func _exit_tree():

godot/addons/godot-llama-cpp/godot-llama-cpp.gdextension

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[configuration]
22

3-
entry_symbol = "example_library_init"
4-
compatibility_minimum = "4.1"
3+
entry_symbol = "init_library"
4+
compatibility_minimum = "4.2"
55

66
[libraries]
77

88
macos.debug = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp-aarch64-macos-none-Debug.dylib"
99
macos.release = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp-aarch64-macos-none-ReleaseFast.dylib"
1010
windows.debug.x86_32 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.windows.template_debug.x86_32.dll"
1111
windows.release.x86_32 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.windows.template_release.x86_32.dll"
12-
windows.debug.x86_64 = "res://addons/godot-llama-cpp/lib/windows/godot-llama-cpp.dll"
12+
windows.debug.x86_64 = "res://addons/godot-llama-cpp/lib/godot-llama-cpp-x86_64-windows-gnu-Debug.dll"
1313
windows.release.x86_64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.windows.template_release.x86_64.dll"
1414
linux.debug.x86_64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.linux.template_debug.x86_64.so"
1515
linux.release.x86_64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.linux.template_release.x86_64.so"
@@ -21,3 +21,8 @@ android.debug.x86_64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.andr
2121
android.release.x86_64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.android.template_release.x86_64.so"
2222
android.debug.arm64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.android.template_debug.arm64.so"
2323
android.release.arm64 = "res://addons/godot-llama-cpp/lib/libgodot-llama-cpp.android.template_release.arm64.so"
24+
25+
[icons]
26+
27+
LlamaModel = "res://addons/godot-llama-cpp/assets/godot-llama-cpp-16x16.svg"
28+
LlamaContext = "res://addons/godot-llama-cpp/assets/godot-llama-cpp-16x16.svg"

0 commit comments

Comments
 (0)