presentation
This commit is contained in:
@@ -3,6 +3,7 @@ const lang = {
|
||||
createGameObject: 'Добавяне на игрови обект',
|
||||
editGameObject: 'Редактиране на игрови обект',
|
||||
name: 'Име',
|
||||
description: 'Описание',
|
||||
fieldRequired: 'Полето е задължително',
|
||||
objectType: 'Тип обект',
|
||||
objectFile: 'Файл',
|
||||
@@ -11,6 +12,7 @@ const lang = {
|
||||
object3d: 'Триизмерен обект',
|
||||
object2d: 'Двумерен обект (изображение)',
|
||||
audio: 'Аудио',
|
||||
video: 'Видео',
|
||||
player3d: 'Играч',
|
||||
saveAndPreview: 'Запис и преглед',
|
||||
preview: 'Преглед',
|
||||
@@ -32,6 +34,7 @@ const lang = {
|
||||
createGameObject: 'Add game object',
|
||||
editGameObject: 'Edit game object',
|
||||
name: 'Name',
|
||||
description: 'Description',
|
||||
fieldRequired: 'Field is required',
|
||||
objectType: 'Object type',
|
||||
objectFile: 'File',
|
||||
@@ -40,6 +43,7 @@ const lang = {
|
||||
object3d: '3D object',
|
||||
object2d: '2D object (picture)',
|
||||
audio: 'Audio',
|
||||
video: 'Video',
|
||||
player3d: 'Player',
|
||||
saveAndPreview: 'Save and preview',
|
||||
preview: 'Preview',
|
||||
|
||||
+18
-6
@@ -8,33 +8,45 @@ export default {
|
||||
icon: 'panorama-variant-outline',
|
||||
title: l.panorama2d,
|
||||
render: true,
|
||||
type: 'Scene'
|
||||
type: 'Scene',
|
||||
color: 'light-blue-darken-4'
|
||||
}, {
|
||||
value: 'environment3d',
|
||||
icon: 'panorama-sphere-outline',
|
||||
title: l.environment3d,
|
||||
render: true,
|
||||
type: 'Scene'
|
||||
type: 'Scene',
|
||||
color: 'teal-darken-3'
|
||||
}, {
|
||||
value: 'object3d',
|
||||
icon: 'video-3d',
|
||||
title: l.object3d,
|
||||
render: true,
|
||||
type: 'GameObject'
|
||||
type: 'GameObject',
|
||||
color: 'deep-orange-darken-4'
|
||||
}, {
|
||||
value: 'object2d',
|
||||
icon: 'file-image-outline',
|
||||
title: l.object2d,
|
||||
type: 'GameObject'
|
||||
type: 'Descriptive',
|
||||
color: 'light-green-accent-4'
|
||||
}, {
|
||||
value: 'player3d',
|
||||
icon: 'human-greeting',
|
||||
title: l.player3d,
|
||||
render: true
|
||||
render: true,
|
||||
color: 'yellow-accent-4'
|
||||
}, {
|
||||
value: 'audio',
|
||||
icon: 'volume-medium',
|
||||
title: l.audio
|
||||
title: l.audio,
|
||||
color: 'deep-purple-accent-4'
|
||||
}, {
|
||||
value: 'video',
|
||||
icon: 'filmstrip',
|
||||
title: l.video,
|
||||
type: 'Descriptive',
|
||||
color: 'purple-darken-3'
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,6 +29,9 @@ export default createVuetify({
|
||||
},
|
||||
VFileInput: {
|
||||
variant: 'outlined'
|
||||
},
|
||||
VTextarea: {
|
||||
variant: 'outlined'
|
||||
}
|
||||
},
|
||||
theme: {
|
||||
|
||||
Reference in New Issue
Block a user