Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 668 Bytes
85ea1a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from config import SCENE_CONFIGS
import os
print('GLB文件路径检查:')
for scene, config in SCENE_CONFIGS.items():
glb_path = config.get('glb_path', '')
exists = os.path.exists(glb_path)
status = '存在' if exists else '不存在'
print(f'{scene}: {glb_path} - {status}')
print('\nEpisode图片路径检查 (以episode_1为例):')
for scene, config in SCENE_CONFIGS.items():
scene_name = config.get('scene_name', scene)
image_path = os.path.join('scene_assets', f'{scene_name}_0.jpg')
exists = os.path.exists(image_path)
status = '存在' if exists else '不存在'
print(f'{scene} -> {scene_name}: {image_path} - {status}')
|