1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 17:35:40 +02:00

default -> simple

This commit is contained in:
syuilo
2026-05-03 16:20:53 +09:00
parent b16b158372
commit 9e848f3135
4 changed files with 5 additions and 5 deletions

View File

@@ -28,9 +28,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, shallowRef, useTemplateRef, watch } from 'vue';
import XWallOption from './room.default-env-wall-options.vue';
import XPillarOption from './room.default-env-pillar-options.vue';
import XDefaultEnvOptions from './room.default-env-options.vue';
import XWallOption from './room.simple-env-wall-options.vue';
import XPillarOption from './room.simple-env-pillar-options.vue';
import XDefaultEnvOptions from './room.simple-env-options.vue';
import type { ObjectDef } from '@/world/room/object.js';
import type { SimpleEnvOptions } from '@/world/room/env.js';
import type { RoomState } from '@/world/room/engine.js';

View File

@@ -97,8 +97,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, shallowRef, useTemplateRef, watch } from 'vue';
import XWallOption from './room.default-env-wall-options.vue';
import XPillarOption from './room.default-env-pillar-options.vue';
import XWallOption from './room.simple-env-wall-options.vue';
import XPillarOption from './room.simple-env-pillar-options.vue';
import type { ObjectDef } from '@/world/room/object.js';
import type { SimpleEnvOptions } from '@/world/room/env.js';
import { i18n } from '@/i18n.js';