Compare commits

...

3 Commits

Author SHA1 Message Date
2941542610 Rename QuakeBall.gdextension to SkullBall.gdextension 2026-07-30 19:48:02 +03:00
4bbc5a805a Rename rust project 2026-07-30 19:46:51 +03:00
7b8c031022 Rename project to SkullBall 2026-07-30 19:45:57 +03:00
8 changed files with 31 additions and 31 deletions

24
Cargo.lock generated
View File

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

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/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

@ -0,0 +1,14 @@
[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"
include_filter=""
exclude_filter=""
export_path="../dist/windows/quakeball.exe"
export_path="../dist/windows/skullballs.exe"
patches=PackedStringArray()
patch_delta_encoding=false
patch_delta_compression_level_zstd=19
@ -86,7 +86,7 @@ custom_features=""
export_filter="all_resources"
include_filter=""
exclude_filter=""
export_path="../dist/linux/quakeball.x86_64"
export_path="../dist/linux/skullball.x86_64"
patches=PackedStringArray()
patch_delta_encoding=false
patch_delta_compression_level_zstd=19

View File

@ -10,7 +10,7 @@ config_version=5
[application]
config/name="QuakeBall"
config/name="SkullBall"
run/main_scene="uid://lahirbqfppvw"
config/features=PackedStringArray("4.7", "Forward Plus")
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]
custom_minimum_size = Vector2(0, 50)
layout_mode = 2
text = "QuakeBall"
text = "SkullBall"
horizontal_alignment = 1
metadata/_edit_lock_ = true

View File

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