Skip to content

Commit

Permalink
Update demo project files
Browse files Browse the repository at this point in the history
  • Loading branch information
Warreign committed Aug 15, 2024
1 parent 91ba987 commit b769fa5
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 3 deletions.
4 changes: 4 additions & 0 deletions demo/Example.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
extends Example

func _ready():
test_cesium();
6 changes: 5 additions & 1 deletion demo/addons/cesium-godot/cesium-godot.gdextension
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[configuration]
entry_symbol = "GDExtensionInit"
compatibility_minimum = 4.1
compatibility_minimum = 4.2

[icons]
Example = "icons/Example.svg"
Expand All @@ -9,3 +9,7 @@ Example = "icons/Example.svg"
linux.debug.x86_64 = "lib/Linux-x86_64/libcesium-godot-d.so"
macos.debug = "lib/Darwin-Universal/libcesium-godot-d.dylib"
windows.debug.x86_64 = "lib/Windows-AMD64/cesium-godot-d.dll"

linux.release.x86_64 = "lib/Linux-x86_64/libcesium-godot.so"
macos.release = "lib/Darwin-universal/libcesium-godot.dylib"
windows.release.x86_64 = "lib/Windows-AMD64/cesium-godot.dll"
2 changes: 1 addition & 1 deletion demo/addons/cesium-godot/icons/Example.svg.import
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

importer="texture"
type="CompressedTexture2D"
uid="uid://dao814wlfjtla"
uid="uid://cv1ve5qvgoxyr"
path="res://.godot/imported/Example.svg-48983e07ca2a1b509ce1a2772e742e21.ctex"
metadata={
"vram_texture": false
Expand Down
Binary file modified demo/addons/cesium-godot/lib/Windows-AMD64/cesium-godot-d.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11 changes: 10 additions & 1 deletion demo/main.tscn
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
[gd_scene format=3 uid="uid://dkklw300gsxdi"]
[gd_scene load_steps=2 format=3 uid="uid://dkklw300gsxdi"]

[ext_resource type="Script" path="res://Example.gd" id="1_r7nus"]

[node name="Main" type="Node3D"]

[node name="Example" type="Example" parent="."]
offset_right = 40.0
offset_bottom = 40.0
script = ExtResource("1_r7nus")

[node name="Label" type="Label" parent="Example"]
layout_mode = 0
offset_right = 40.0
offset_bottom = 23.0
text = "Some label"

0 comments on commit b769fa5

Please sign in to comment.