From a46a91e183a272e012354a6f0263299448205acb Mon Sep 17 00:00:00 2001 From: David Date: Fri, 15 Jul 2022 17:33:27 +0200 Subject: initial commit: template --- godot/native/Game.gdns | 8 ++++++++ godot/native/SpinningCube.gdns | 8 ++++++++ godot/native/game.gdnlib | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 godot/native/Game.gdns create mode 100644 godot/native/SpinningCube.gdns create mode 100644 godot/native/game.gdnlib (limited to 'godot/native') diff --git a/godot/native/Game.gdns b/godot/native/Game.gdns new file mode 100644 index 0000000..ea04ed5 --- /dev/null +++ b/godot/native/Game.gdns @@ -0,0 +1,8 @@ +[gd_resource type="NativeScript" load_steps=2 format=2] + +[ext_resource path="res://native/game.gdnlib" type="GDNativeLibrary" id=1] + +[resource] +resource_name = "Game" +class_name = "Game" +library = ExtResource( 1 ) diff --git a/godot/native/SpinningCube.gdns b/godot/native/SpinningCube.gdns new file mode 100644 index 0000000..e6c2766 --- /dev/null +++ b/godot/native/SpinningCube.gdns @@ -0,0 +1,8 @@ +[gd_resource type="NativeScript" load_steps=2 format=2] + +[ext_resource path="res://native/game.gdnlib" type="GDNativeLibrary" id=1] + +[resource] +resource_name = "SpinningCube" +class_name = "SpinningCube" +library = ExtResource( 1 ) diff --git a/godot/native/game.gdnlib b/godot/native/game.gdnlib new file mode 100644 index 0000000..439db91 --- /dev/null +++ b/godot/native/game.gdnlib @@ -0,0 +1,40 @@ +[general] + +singleton=false +load_once=true +symbol_prefix="godot_" +reloadable=true + +[entry] + +Android.arm64-v8a="res://../lib/aarch64-linux-android/libcode_with_your_friends2022.so" +Android.armeabi-v7a="res://../lib/armv7-linux-androideabi/libcode_with_your_friends2022.so" +Android.x86="res://../lib/i686-linux-android/libcode_with_your_friends2022.so" +Android.x86_64="res://../lib/x86_64-linux-android/libcode_with_your_friends2022.so" +HTML5.wasm32 = "res://../lib/wasm32-unknown-emscripten/code_with_your_friends2022.wasm" +iOS.arm64="res://../lib/aarch64-apple-ios/libcode_with_your_friends2022.a" +OSX.64="res://../lib/x86_64-apple-darwin/libcode_with_your_friends2022.dylib" +Server.32="res://../lib/i686-unknown-linux-gnu/libcode_with_your_friends2022.so" +Server.64="res://../lib/x86_64-unknown-linux-gnu/libcode_with_your_friends2022.so" +# Windows.32="res://../lib/i686-pc-windows-gnu/code_with_your_friends2022.dll" +Windows.32="res://../lib/i686-pc-windows-msvc/code_with_your_friends2022.dll" +# Windows.64="res://../lib/x86_64-pc-windows-gnu/code_with_your_friends2022.dll" +Windows.64="res://../lib/x86_64-pc-windows-msvc/code_with_your_friends2022.dll" +X11.32="res://../lib/i686-unknown-linux-gnu/libcode_with_your_friends2022.so" +X11.64="res://../lib/x86_64-unknown-linux-gnu/libcode_with_your_friends2022.so" + +[dependencies] + +Android.arm64-v8a=[ ] +Android.armeabi-v7a=[ ] +Android.x86=[ ] +Android.x86_64=[ ] +HTML5.wasm32=[ ] +iOS.arm64=[ ] +OSX.64=[ ] +Server.32=[ ] +Server.64=[ ] +Windows.32=[ ] +Windows.64=[ ] +X11.32=[ ] +X11.64=[ ] -- cgit