Files
pronature-platform/src/plugins/params.js
T
2025-11-14 16:08:51 +02:00

46 lines
1.5 KiB
JavaScript

export default {
install: (app, options) => {
app.config.globalProperties.$p = {
objectTypes: [{
value: 'panorama2d',
icon: 'panorama-variant-outline',
render: true,
type: 'Panorama',
color: 'light-blue-darken-4'
}, {
value: 'environment3d',
icon: 'panorama-sphere-outline',
render: true,
type: 'Scene',
color: 'orange-darken-3'
}, {
value: 'object3d',
icon: 'video-3d',
render: true,
type: 'GameObject',
color: 'green-darken-4'
}, {
value: 'object2d',
icon: 'file-image-outline',
type: 'Texture',
color: 'cyan-darken-3'
}, {
value: 'player3d',
icon: 'human-greeting',
type: 'Character',
render: true,
color: 'yellow-accent-4'
}, {
value: 'video',
icon: 'filmstrip',
type: 'Video',
color: 'deep-orange-darken-4'
}, {
value: 'audio',
icon: 'volume-medium',
type: 'Audio',
color: 'deep-purple-accent-2'
}]
}
}
}