Compare commits

..

No commits in common. "294154261088382dfbf65ffa51f6f59369547c9f" and "34bb145de3c9b4803d405a407999bf3c9c5012c2" have entirely different histories.

8 changed files with 31 additions and 31 deletions

24
Cargo.lock generated
View File

@ -231,6 +231,18 @@ dependencies = [
"unicode-ident", "unicode-ident",
] ]
[[package]]
name = "quakeball"
version = "0.1.0"
dependencies = [
"ciborium",
"flate2",
"godot",
"serde",
"teanet",
"toml",
]
[[package]] [[package]]
name = "quote" name = "quote"
version = "1.0.46" version = "1.0.46"
@ -285,18 +297,6 @@ version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
[[package]]
name = "skullball"
version = "0.1.0"
dependencies = [
"ciborium",
"flate2",
"godot",
"serde",
"teanet",
"toml",
]
[[package]] [[package]]
name = "syn" name = "syn"
version = "2.0.119" version = "2.0.119"

View File

@ -0,0 +1,14 @@
[configuration]
entry_symbol = "gdext_rust_init"
compatibility_minimum = 4.1
reloadable = true
[libraries]
linux.debug.x86_64 = "res://../target/debug/libquakeball.so"
linux.release.x86_64 = "res://../target/release/libquakeball.so"
windows.debug.x86_64 = "res://../target/x86_64-pc-windows-gnu/debug/quakeball.dll"
windows.release.x86_64 = "res://../target/x86_64-pc-windows-gnu/release/quakeball.dll"
macos.debug = "res://../target/debug/libquakeball.dylib"
macos.release = "res://../target/release/libquakeball.dylib"
macos.debug.arm64 = "res://../target/debug/libquakeball.dylib"
macos.release.arm64 = "res://../target/release/libquakeball.dylib"

View File

@ -1,14 +0,0 @@
[configuration]
entry_symbol = "gdext_rust_init"
compatibility_minimum = 4.1
reloadable = true
[libraries]
linux.debug.x86_64 = "res://../target/debug/libskullball.so"
linux.release.x86_64 = "res://../target/release/libskullball.so"
windows.debug.x86_64 = "res://../target/x86_64-pc-windows-gnu/debug/skullball.dll"
windows.release.x86_64 = "res://../target/x86_64-pc-windows-gnu/release/skullball.dll"
macos.debug = "res://../target/debug/libskullball.dylib"
macos.release = "res://../target/release/libskullball.dylib"
macos.debug.arm64 = "res://../target/debug/libskullball.dylib"
macos.release.arm64 = "res://../target/release/libskullball.dylib"

View File

@ -12,7 +12,7 @@ custom_features=""
export_filter="all_resources" export_filter="all_resources"
include_filter="" include_filter=""
exclude_filter="" exclude_filter=""
export_path="../dist/windows/skullballs.exe" export_path="../dist/windows/quakeball.exe"
patches=PackedStringArray() patches=PackedStringArray()
patch_delta_encoding=false patch_delta_encoding=false
patch_delta_compression_level_zstd=19 patch_delta_compression_level_zstd=19
@ -86,7 +86,7 @@ custom_features=""
export_filter="all_resources" export_filter="all_resources"
include_filter="" include_filter=""
exclude_filter="" exclude_filter=""
export_path="../dist/linux/skullball.x86_64" export_path="../dist/linux/quakeball.x86_64"
patches=PackedStringArray() patches=PackedStringArray()
patch_delta_encoding=false patch_delta_encoding=false
patch_delta_compression_level_zstd=19 patch_delta_compression_level_zstd=19

View File

@ -10,7 +10,7 @@ config_version=5
[application] [application]
config/name="SkullBall" config/name="QuakeBall"
run/main_scene="uid://lahirbqfppvw" run/main_scene="uid://lahirbqfppvw"
config/features=PackedStringArray("4.7", "Forward Plus") config/features=PackedStringArray("4.7", "Forward Plus")
config/icon="res://icon.svg" config/icon="res://icon.svg"

View File

@ -1575,7 +1575,7 @@ alignment = 1
[node name="label" type="Label" parent="main_panel/v_box_container" unique_id=140542377] [node name="label" type="Label" parent="main_panel/v_box_container" unique_id=140542377]
custom_minimum_size = Vector2(0, 50) custom_minimum_size = Vector2(0, 50)
layout_mode = 2 layout_mode = 2
text = "SkullBall" text = "QuakeBall"
horizontal_alignment = 1 horizontal_alignment = 1
metadata/_edit_lock_ = true metadata/_edit_lock_ = true

View File

@ -1,5 +1,5 @@
[package] [package]
name = "skullball" name = "quakeball"
version = "0.1.0" version = "0.1.0"
edition = "2024" edition = "2024"