issyoubin wip

This commit is contained in:
syuilo 2026-04-23 16:54:59 +09:00
commit 9184f0d7b9
5 changed files with 28 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,28 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import * as BABYLON from '@babylonjs/core';
import { defineObject } from '../object.js';
export const issyoubin = defineObject({
id: 'issyoubin',
name: 'issyoubin',
options: {
schema: {
},
default: {
},
},
placement: 'top',
hasCollisions: false,
hasTexture: true,
createInstance: ({ model, options }) => {
return {
onOptionsUpdated: ([k, v]) => {
},
interactions: {},
};
},
});