lwsc test

This commit is contained in:
2023-05-11 10:06:06 +02:00
parent 085811655d
commit f5d7e99f71
5 changed files with 136 additions and 30 deletions

12
godot/starforce/test.gd Normal file
View File

@@ -0,0 +1,12 @@
@tool
extends Node3D
@export var click = false:
get:
return false
set(value):
var lwo = Lwo.new()
var mesh = lwo.get_mesh("E:\\Games\\Moorhuhn Kart 3\\extract\\D\\Moorhuhnkart\\3dobjects_cars\\affe.lwo")
var instance = MeshInstance3D.new()
instance.mesh = mesh
add_child(instance)