update to latest engine release candidate

This commit is contained in:
2025-10-11 18:10:45 +02:00
parent 04bd2ee3e4
commit e020b64c86
74 changed files with 3862 additions and 889 deletions

18
.vscode/launch.json vendored
View File

@@ -4,22 +4,22 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "DesktopLauncher",
"name": "Debug Application",
"request": "launch",
"mainClass": "org.ngengine.platform.DesktopLauncher",
"projectName": "platform-desktop",
"osx": {
"vmArgs": "-XstartOnFirstThread"
}
},
"linux": {
"env": {
"__GL_THREADED_OPTIMIZATIONS": "0"
}
},
"vmArgs": "-ea -Dthreadwarden=true -Djava.util.logging.config.file=${workspaceFolder}/dev-logging.properties",
}
]
}

15
.vscode/settings.json vendored
View File

@@ -1,3 +1,16 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/gradle": true,
"**/.gradle": true,
// "**/build": true,
"**/bin": true,
// "platform-*": true
}
}