We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf21ff commit cc158a9Copy full SHA for cc158a9
scripts/generate-database.js
@@ -427,7 +427,11 @@ const extractExamples = async (
427
),
428
license: fileWithMetadata.license,
429
projectFileUrl: getResourceUrl(fileWithMetadata.path),
430
- gdevelopVersion: '', //TODO: set to the GDevelop version used to author the example?
+ gdevelopVersion: usedExtensions
431
+ .map((exampleUsedExtension) => exampleUsedExtension.name)
432
+ .includes('Physics3D')
433
+ ? '5.5.200'
434
+ : '', //TODO: set to the GDevelop version used to author the example?
435
};
436
437
return example;
0 commit comments