game object module

This commit is contained in:
2024-11-06 20:09:02 +02:00
parent e3a2a0251d
commit 7180cfeb7f
16 changed files with 201 additions and 70 deletions
+3 -1
View File
@@ -117,7 +117,9 @@ class GameObjectsManager{
}else{
object.asset.type = 'single';
await fs.promises.copyFile(src, def + ext);
await this.addThumb(object, src);
if (['.jpg', '.png', '.webp'].includes(ext)){
await this.addThumb(object, src);
}
}
}
@@ -42,6 +42,11 @@ class GameObjectsController{
res.json(object);
})
router.delete('/:id', async (req, res)=>{
await gameObject.remove(req.params.id);
res.json({status: 'OK'});
})
app.webServer.xapp.use(this.route, router);
}
}