Files
pronature-platform/src/plugins/params.js
T
2025-03-18 18:55:05 +02:00

44 lines
1.4 KiB
JavaScript

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