1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 23:25:41 +02:00
This commit is contained in:
syuilo
2026-04-23 17:17:09 +09:00
parent 9184f0d7b9
commit c36dfc6643
4 changed files with 6 additions and 0 deletions

View File

@@ -327,6 +327,7 @@ export class WorldEngine extends EventEmitter<WorldEngineEvents> {
'This is a virtual space for Misskey users!',
//'You can chat, play games, and more!',
//'Check out the bulletin board for announcements',
'Have a nice day with Misskey!',
'MAINTENANCE will begin at 9:00 A.M.',
];

View File

@@ -19,6 +19,11 @@ export const issyoubin = defineObject({
hasCollisions: false,
hasTexture: true,
createInstance: ({ model, options }) => {
for (const m of model.root.getChildMeshes()) {
if (m.material != null) {
(m.material as BABYLON.PBRMaterial).separateCullingPass = true;
}
}
return {
onOptionsUpdated: ([k, v]) => {
},