@gamelearn/arcade-components 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/README.md +53 -0
  2. package/dist/components/arcade-render/background/index.js +33 -0
  3. package/dist/components/arcade-render/background/scene-elements/customGeometry/index.js +46 -0
  4. package/dist/components/arcade-render/background/scene-elements/index.js +90 -0
  5. package/dist/components/arcade-render/element/AnimateElement.js +60 -0
  6. package/dist/components/arcade-render/element/Projection.js +38 -0
  7. package/dist/components/arcade-render/element/index.js +134 -0
  8. package/dist/components/arcade-render/elements-list/ClickableArea.js +76 -0
  9. package/dist/components/arcade-render/elements-list/Poster.js +80 -0
  10. package/dist/components/arcade-render/elements-list/index.js +152 -0
  11. package/dist/components/arcade-render/light/index.js +33 -0
  12. package/dist/components/arcade-render/light/useLight.js +51 -0
  13. package/dist/components/arcade-render/loading/Loading.js +55 -0
  14. package/dist/components/arcade-render/loading/LoadingLogic.js +54 -0
  15. package/dist/components/arcade-render/loading/index.js +21 -0
  16. package/dist/components/arcade-render/mocks/index.js +12 -0
  17. package/dist/components/arcade-render/scene/index.js +152 -0
  18. package/dist/components/cartel-component/components/CartelComponent.js +102 -0
  19. package/dist/components/cartel-component/index.js +13 -0
  20. package/dist/components/comic-component/components/ComicComponent.js +106 -0
  21. package/dist/components/comic-component/components/Slide.js +74 -0
  22. package/dist/components/comic-component/components/Vignette.js +29 -0
  23. package/dist/components/comic-component/index.js +13 -0
  24. package/dist/components/comic-component/mocks/mockForStory.js +58 -0
  25. package/dist/components/conversational-component/components/ConversationalComponent.js +116 -0
  26. package/dist/components/conversational-component/index.js +13 -0
  27. package/dist/components/conversational-pro-component/components/ConversationalProComponent.js +226 -0
  28. package/dist/components/conversational-pro-component/components/Message.js +42 -0
  29. package/dist/components/conversational-pro-component/components/Slot.js +67 -0
  30. package/dist/components/conversational-pro-component/components/SlotList.js +112 -0
  31. package/dist/components/conversational-pro-component/components/scene/Panel.js +114 -0
  32. package/dist/components/conversational-pro-component/components/scene/Panels.js +35 -0
  33. package/dist/components/conversational-pro-component/components/scene/index.js +90 -0
  34. package/dist/components/conversational-pro-component/index.js +13 -0
  35. package/dist/components/conversational-pro-component/mocks/mockForStory.js +591 -0
  36. package/dist/components/cracker-puzzle-component/components/CrackerPuzzleComponent.js +316 -0
  37. package/dist/components/cracker-puzzle-component/components/DrawGrid/index.js +44 -0
  38. package/dist/components/cracker-puzzle-component/components/DrawItem/index.js +53 -0
  39. package/dist/components/cracker-puzzle-component/components/DrawRow/index.js +48 -0
  40. package/dist/components/cracker-puzzle-component/components/colors.js +12 -0
  41. package/dist/components/cracker-puzzle-component/components/helpers.js +168 -0
  42. package/dist/components/cracker-puzzle-component/index.js +13 -0
  43. package/dist/components/cracker-puzzle-component/mocks/mockForStory.js +219 -0
  44. package/dist/components/decision-component/components/DecisionBody.js +167 -0
  45. package/dist/components/decision-component/components/DecisionComponent.js +231 -0
  46. package/dist/components/decision-component/components/Feedback.js +83 -0
  47. package/dist/components/decision-component/components/Options.js +37 -0
  48. package/dist/components/decision-component/components/Rewards.js +203 -0
  49. package/dist/components/decision-component/index.js +13 -0
  50. package/dist/components/decision-component/mocks/mockForStory.js +43 -0
  51. package/dist/components/hacker-puzzle-component/components/HackerPuzzleComponent.js +294 -0
  52. package/dist/components/hacker-puzzle-component/components/languages.js +12 -0
  53. package/dist/components/hacker-puzzle-component/index.js +13 -0
  54. package/dist/components/hacker-puzzle-component/mocks/mockForStory.js +101 -0
  55. package/dist/components/image-component/components/ImageComponent.js +66 -0
  56. package/dist/components/image-component/index.js +13 -0
  57. package/dist/components/image-component/mocks/mockForStory.js +50 -0
  58. package/dist/components/index.js +163 -0
  59. package/dist/components/inventory-item/components/InventoryItem.js +100 -0
  60. package/dist/components/inventory-item/index.js +13 -0
  61. package/dist/components/inventory-item/mocks/mockForStory.js +28 -0
  62. package/dist/components/keyboard-puzzle-component/components/FeedbackMessage.js +30 -0
  63. package/dist/components/keyboard-puzzle-component/components/KeyboardPuzzleComponent.js +160 -0
  64. package/dist/components/keyboard-puzzle-component/index.js +13 -0
  65. package/dist/components/keyboard-puzzle-component/mocks/mockForStory.js +36 -0
  66. package/dist/components/lectures-component/components/LectureButtons.js +50 -0
  67. package/dist/components/lectures-component/components/LecturesComponent.js +140 -0
  68. package/dist/components/lectures-component/index.js +13 -0
  69. package/dist/components/lectures-component/mocks/mockForStory.js +22 -0
  70. package/dist/components/login-puzzle-component/components/LoginPuzzleComponent.js +170 -0
  71. package/dist/components/login-puzzle-component/index.js +13 -0
  72. package/dist/components/login-puzzle-component/mocks/mockForStory.js +38 -0
  73. package/dist/components/notice-component/components/NoticeComponent.js +61 -0
  74. package/dist/components/notice-component/index.js +13 -0
  75. package/dist/components/notice-component/mocks/mockForStory.js +20 -0
  76. package/dist/components/pdf-component/components/PdfComponent.js +79 -0
  77. package/dist/components/pdf-component/components/PdfVisor.js +84 -0
  78. package/dist/components/pdf-component/index.js +23 -0
  79. package/dist/components/pdf-component/mocks/mockForProps.js +23 -0
  80. package/dist/components/pikachu-component/components/PikachuComponent.js +24 -0
  81. package/dist/components/pikachu-component/index.js +13 -0
  82. package/dist/components/pikachu-component/mocks/mockForStory.js +15 -0
  83. package/dist/components/url-component/components/UrlComponent.js +92 -0
  84. package/dist/components/url-component/index.js +13 -0
  85. package/dist/components/url-component/mocks/mockForProps.js +1 -0
  86. package/dist/components/video-component/components/VideoComponent.js +72 -0
  87. package/dist/components/video-component/index.js +13 -0
  88. package/dist/components/video-component/mocks/mockForStory.js +84 -0
  89. package/dist/components/video-visor/components/VideoControllers/BufferBar.js +130 -0
  90. package/dist/components/video-visor/components/VideoControllers/ControlButtons.js +36 -0
  91. package/dist/components/video-visor/components/VideoControllers/FinishedVideoButtons.js +45 -0
  92. package/dist/components/video-visor/components/VideoControllers/PlayInitButton.js +46 -0
  93. package/dist/components/video-visor/components/VideoControllers/SkipButton.js +44 -0
  94. package/dist/components/video-visor/components/VideoControllers/Timer.js +42 -0
  95. package/dist/components/video-visor/components/VideoControllers/VolumeBar.js +108 -0
  96. package/dist/components/video-visor/components/VideoControllers/index.js +122 -0
  97. package/dist/components/video-visor/components/VideoVisor.js +308 -0
  98. package/dist/components/video-visor/index.js +13 -0
  99. package/dist/components/video-visor/mocks/mockForStory.js +27 -0
  100. package/dist/helpers/LightSet.js +39 -0
  101. package/dist/helpers/LodController.js +37 -0
  102. package/dist/helpers/drawLOD.js +358 -0
  103. package/dist/helpers/index.js +82 -0
  104. package/dist/helpers/lodStats.js +51 -0
  105. package/dist/helpers/useGLB.js +62 -0
  106. package/dist/index.js +18 -0
  107. package/package.json +75 -0
@@ -0,0 +1,591 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.withoutBackground = exports.voiceOverProps = exports.conversationProps = exports.converOld = void 0;
7
+ var animations = {
8
+ neutral: {
9
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/animation/5f06e116f9efdd00112fcc6f/male_missunderstand_1.glb'
10
+ },
11
+ angry: {
12
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/animation/5e4a5b4a8487c3000fb7a3bd/standmale_1_angry.glb'
13
+ },
14
+ sad: {
15
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/animation/5f06e116f9efdd00112fcc6f/male_missunderstand_1.glb'
16
+ }
17
+ };
18
+ var converOld = {
19
+ messages: [{
20
+ character: 'Puerta',
21
+ emotion: 'neutral',
22
+ position: 0,
23
+ text: 'asdadaddad',
24
+ text_labelId: 'text_0_iUf0i9oJ'
25
+ }, {
26
+ character: 'Puerta',
27
+ emotion: 'neutral',
28
+ position: 0,
29
+ text: 'asdasdadad',
30
+ text_labelId: 'text_1_iUf0i9Vu'
31
+ }, {
32
+ character: 'taxi',
33
+ emotion: 'neutral',
34
+ position: 1,
35
+ text: 'asdasdadad',
36
+ text_labelId: 'text_1_iUf0i9Vu'
37
+ }, {
38
+ character: 'voice-over',
39
+ emotion: null,
40
+ position: 2,
41
+ text: 'asdasdadad',
42
+ text_labelId: 'text_1_iUf0i9Vu'
43
+ }],
44
+ characters: [{
45
+ name: 'Puerta',
46
+ resource: {
47
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f5214cec39e26001123797f/ch0112_philip_001.glb',
48
+ animations: animations
49
+ },
50
+ type: 'character',
51
+ uid: 'DgYrst'
52
+ }, {
53
+ name: 'taxi',
54
+ resource: {
55
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/object/5eff09c2085be00011aae087/pr0238_yacht_001.glb'
56
+ },
57
+ type: 'object',
58
+ uid: 'qejIfp'
59
+ }],
60
+ alias: ['', 'Pepito', 'Narrador'],
61
+ background: {
62
+ imgId: '5e81fb36bbb333000f68a804',
63
+ imgName: '01_GRAFICO_ASAP_Mesa de trabajo 1 copia 10.jpg',
64
+ img: {
65
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/image/605369a5901f3e00123b81ca/b27bb40dcb1189d14012131a35b48a36.jpeg'
66
+ }
67
+ }
68
+ };
69
+ exports.converOld = converOld;
70
+ var conversationProps = {
71
+ lines: [{
72
+ flex: true,
73
+ slots: [{
74
+ emotion: '',
75
+ text: '',
76
+ uid: 'DbKslR',
77
+ talking: false,
78
+ alias: 'paco',
79
+ text_labelId: 'text_0_0_nlrZh8Np',
80
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
81
+ }, {
82
+ emotion: 'neutral',
83
+ text: '',
84
+ uid: null,
85
+ talking: false,
86
+ text_labelId: 'text_0_1_nlrZiNfB',
87
+ alias_labelId: 'alias_0_1_nlrZijhw'
88
+ }, {
89
+ emotion: 'neutral',
90
+ text: '',
91
+ uid: null,
92
+ talking: false,
93
+ text_labelId: 'text_0_2_nlrZiBF3',
94
+ alias_labelId: 'alias_0_2_nlrZiR6G'
95
+ }, {
96
+ emotion: 'neutral',
97
+ text: '',
98
+ uid: null,
99
+ talking: false,
100
+ text_labelId: 'text_0_3_nlrZinJN',
101
+ alias_labelId: 'alias_0_3_nlrZjLWB'
102
+ }, {
103
+ emotion: 'neutral',
104
+ text: 'Hola!',
105
+ uid: 'kjTHqt',
106
+ talking: true,
107
+ alias: 'manolo',
108
+ text_labelId: 'text_0_4_nlrZjUV9',
109
+ alias_labelId: 'alias_0_4_nlrZj81d'
110
+ }],
111
+ audioId: '5f1078861d84860011e179d0',
112
+ hasAlias: true,
113
+ text_labelId: 'text_0_nlrZj4Nr',
114
+ audioId_labelId: 'audioId_0_nlrZkkdo'
115
+ }, {
116
+ flex: true,
117
+ slots: [{
118
+ emotion: '',
119
+ text: '',
120
+ uid: 'DbKslR',
121
+ talking: false,
122
+ alias: 'paco',
123
+ text_labelId: 'text_0_0_nlrZh8Np',
124
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
125
+ }, {
126
+ emotion: 'neutral',
127
+ text: '',
128
+ uid: null,
129
+ talking: false,
130
+ text_labelId: 'text_0_1_nlrZiNfB',
131
+ alias_labelId: 'alias_0_1_nlrZijhw'
132
+ }, {
133
+ emotion: 'neutral',
134
+ text: '',
135
+ uid: null,
136
+ talking: false,
137
+ text_labelId: 'text_0_2_nlrZiBF3',
138
+ alias_labelId: 'alias_0_2_nlrZiR6G'
139
+ }, {
140
+ emotion: 'neutral',
141
+ text: '',
142
+ uid: null,
143
+ talking: false,
144
+ text_labelId: 'text_0_3_nlrZinJN',
145
+ alias_labelId: 'alias_0_3_nlrZjLWB'
146
+ }, {
147
+ emotion: 'neutral',
148
+ text: 'Hola!',
149
+ uid: 'kjTHqi',
150
+ talking: true,
151
+ alias: 'manolo',
152
+ text_labelId: 'text_0_4_nlrZjUV9',
153
+ alias_labelId: 'alias_0_4_nlrZj81d'
154
+ }],
155
+ audioId: '5f1078861d84860011e179d0',
156
+ hasAlias: true,
157
+ text_labelId: 'text_0_nlrZj4Nr',
158
+ audioId_labelId: 'audioId_0_nlrZkkdo'
159
+ }, {
160
+ flex: true,
161
+ slots: [{
162
+ emotion: '',
163
+ text: '',
164
+ uid: 'DbKslR',
165
+ talking: false,
166
+ alias: 'paco',
167
+ text_labelId: 'text_0_0_nlrZh8Np',
168
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
169
+ }, {
170
+ emotion: 'neutral',
171
+ text: '',
172
+ uid: null,
173
+ talking: false,
174
+ text_labelId: 'text_0_1_nlrZiNfB',
175
+ alias_labelId: 'alias_0_1_nlrZijhw'
176
+ }, {
177
+ emotion: 'neutral',
178
+ text: '',
179
+ uid: null,
180
+ talking: false,
181
+ text_labelId: 'text_0_2_nlrZiBF3',
182
+ alias_labelId: 'alias_0_2_nlrZiR6G'
183
+ }, {
184
+ emotion: 'neutral',
185
+ text: '',
186
+ uid: null,
187
+ talking: false,
188
+ text_labelId: 'text_0_3_nlrZinJN',
189
+ alias_labelId: 'alias_0_3_nlrZjLWB'
190
+ }, {
191
+ emotion: 'neutral',
192
+ text: 'Hola!',
193
+ uid: 'kjTHqx',
194
+ talking: true,
195
+ alias: 'manolo',
196
+ text_labelId: 'text_0_4_nlrZjUV9',
197
+ alias_labelId: 'alias_0_4_nlrZj81d'
198
+ }],
199
+ audioId: '5f1078861d84860011e179d0',
200
+ hasAlias: true,
201
+ text_labelId: 'text_0_nlrZj4Nr',
202
+ audioId_labelId: 'audioId_0_nlrZkkdo'
203
+ }, {
204
+ payload: {
205
+ options: [{
206
+ id: 0,
207
+ right: false,
208
+ feedback: 'dfgsdfgsdfgsdfghdfgh',
209
+ text: 'Si',
210
+ rewards: [],
211
+ audioId: '',
212
+ text_labelId: 'text_3_0_u4s8j5fa',
213
+ feedback_labelId: 'feedback_3_0_u4s8jVTv',
214
+ audioId_labelId: 'audioId_3_0_u4s8jyiK'
215
+ }, {
216
+ id: 1,
217
+ right: false,
218
+ feedback: 'fasdfasdfg',
219
+ text: 'No',
220
+ rewards: [],
221
+ audioId: '',
222
+ text_labelId: 'text_3_1_u4s8jzBF',
223
+ feedback_labelId: 'feedback_3_1_u4s8jWNa',
224
+ audioId_labelId: 'audioId_3_1_u4s8jaJY'
225
+ }, {
226
+ id: 2,
227
+ right: true,
228
+ feedback: 'asdfasd',
229
+ text: 'Patata',
230
+ rewards: [],
231
+ audioId: '',
232
+ text_labelId: 'text_3_2_u4s8jA2Z',
233
+ feedback_labelId: 'feedback_3_2_u4s8jBIJ',
234
+ audioId_labelId: 'audioId_3_2_u4s8j23g'
235
+ }],
236
+ required: true,
237
+ question: 'Funciona la decisión',
238
+ question_labelId: 'question_3_u4s8i10a'
239
+ },
240
+ decision: true
241
+ }, {
242
+ flex: true,
243
+ slots: [{
244
+ emotion: 'angry',
245
+ text: '',
246
+ uid: 'DbKslR',
247
+ talking: false,
248
+ alias: 'paco',
249
+ text_labelId: 'text_0_0_nlrZh8Np',
250
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
251
+ }, {
252
+ emotion: 'neutral',
253
+ text: '',
254
+ uid: null,
255
+ talking: false,
256
+ text_labelId: 'text_0_1_nlrZiNfB',
257
+ alias_labelId: 'alias_0_1_nlrZijhw'
258
+ }, {
259
+ emotion: 'neutral',
260
+ text: '',
261
+ uid: null,
262
+ talking: false,
263
+ text_labelId: 'text_0_2_nlrZiBF3',
264
+ alias_labelId: 'alias_0_2_nlrZiR6G'
265
+ }, {
266
+ emotion: 'neutral',
267
+ text: '',
268
+ uid: null,
269
+ talking: false,
270
+ text_labelId: 'text_0_3_nlrZinJN',
271
+ alias_labelId: 'alias_0_3_nlrZjLWB'
272
+ }, {
273
+ emotion: 'neutral',
274
+ text: 'Hola!',
275
+ uid: 'kjTHqi',
276
+ talking: true,
277
+ alias: 'manolo',
278
+ text_labelId: 'text_0_4_nlrZjUV9',
279
+ alias_labelId: 'alias_0_4_nlrZj81d'
280
+ }],
281
+ audioId: '5f1078861d84860011e179d0',
282
+ hasAlias: true,
283
+ text_labelId: 'text_0_nlrZj4Nr',
284
+ audioId_labelId: 'audioId_0_nlrZkkdo'
285
+ }],
286
+ background: {
287
+ imgId: '605369a5901f3e00123b81ca',
288
+ imgName: 'b27bb40dcb1189d14012131a35b48a36.jpeg',
289
+ img: {
290
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/image/605369a5901f3e00123b81ca/b27bb40dcb1189d14012131a35b48a36.jpeg'
291
+ }
292
+ },
293
+ characters: [{
294
+ name: 'Testing',
295
+ resourceId: '5f68d7b6a373890011a78a11',
296
+ resource: {
297
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/object/5eff09c2085be00011aae087/pr0238_yacht_001.glb'
298
+ },
299
+ type: 'object',
300
+ uid: 'DbKslR'
301
+ }, {
302
+ name: 'Male senior dark-skinned 01',
303
+ resourceId: '5f5214cec39e26001123797f',
304
+ resource: {
305
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f5214cec39e26001123797f/ch0112_philip_001.glb',
306
+ animations: animations
307
+ },
308
+ type: 'character',
309
+ uid: 'kjTHqi'
310
+ }, {
311
+ name: 'Female senior light-skinned 01',
312
+ resourceId: '5f5214cec39e26001123797f',
313
+ resource: {
314
+ url: 'https://gl-lms-storage.s3-eu-west-1.amazonaws.com/development/clients/5981fca94d82290bcbe957fe/character/5f60759328beb100113b694c/ch0116_bima_001_rig_v01_llaveronuevo.glb',
315
+ animations: {
316
+ neutral: {
317
+ resource: {}
318
+ }
319
+ }
320
+ },
321
+ type: 'character',
322
+ uid: 'kjTHqt'
323
+ }, {
324
+ name: 'Taxi',
325
+ resourceId: '5f5214cec39e26001123797f',
326
+ resource: {
327
+ url: 'https://gl-lms-storage.s3-eu-west-1.amazonaws.com/development/clients/5981fca94d82290bcbe957fe/object/5e53b649ef1f60000fb9cc1c/draco_pr0065_car_004.glb'
328
+ },
329
+ type: 'object',
330
+ uid: 'kjTHqx'
331
+ }]
332
+ };
333
+ exports.conversationProps = conversationProps;
334
+ var voiceOverProps = {
335
+ lines: [{
336
+ flex: false,
337
+ slots: [{
338
+ emotion: 'neutral',
339
+ text: '',
340
+ uid: 'DbKslR',
341
+ talking: false,
342
+ alias: 'paco',
343
+ text_labelId: 'text_0_0_nlrZh8Np',
344
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
345
+ }, {
346
+ emotion: 'neutral',
347
+ text: '',
348
+ uid: null,
349
+ talking: false,
350
+ text_labelId: 'text_0_1_nlrZiNfB',
351
+ alias_labelId: 'alias_0_1_nlrZijhw'
352
+ }, {
353
+ emotion: 'neutral',
354
+ text: '',
355
+ uid: null,
356
+ talking: false,
357
+ text_labelId: 'text_0_2_nlrZiBF3',
358
+ alias_labelId: 'alias_0_2_nlrZiR6G'
359
+ }, {
360
+ emotion: 'neutral',
361
+ text: '',
362
+ uid: null,
363
+ talking: false,
364
+ text_labelId: 'text_0_3_nlrZinJN',
365
+ alias_labelId: 'alias_0_3_nlrZjLWB'
366
+ }, {
367
+ emotion: 'neutral',
368
+ text: 'Hola!',
369
+ uid: 'kjTHqi',
370
+ talking: true,
371
+ alias: 'manolo',
372
+ text_labelId: 'text_0_4_nlrZjUV9',
373
+ alias_labelId: 'alias_0_4_nlrZj81d'
374
+ }],
375
+ audioId: '5f1078861d84860011e179d0',
376
+ audio: {
377
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/documents/Cat-sound.mp3'
378
+ },
379
+ hasAlias: true,
380
+ text_labelId: 'text_0_nlrZj4Nr',
381
+ audioId_labelId: 'audioId_0_nlrZkkdo'
382
+ }, {
383
+ flex: false,
384
+ slots: [{
385
+ emotion: 'angry',
386
+ text: 'Hola manolo! Manten la distancia social! fus!\n',
387
+ uid: 'DbKslR',
388
+ talking: true,
389
+ alias: 'paco',
390
+ text_labelId: 'text_1_0_nlrZkQmc',
391
+ alias_labelId: 'alias_1_0_nlrZkgt4'
392
+ }, {
393
+ emotion: 'neutral',
394
+ text: '',
395
+ uid: 'kjTHqi',
396
+ talking: false,
397
+ alias: 'manolo',
398
+ text_labelId: 'text_1_1_nlrZk7vR',
399
+ alias_labelId: 'alias_1_1_nlrZkUf9'
400
+ }, {
401
+ emotion: 'neutral',
402
+ text: '',
403
+ uid: null,
404
+ talking: false,
405
+ text_labelId: 'text_1_2_nlrZkw4D',
406
+ alias_labelId: 'alias_1_2_nlrZkKz8'
407
+ }, {
408
+ emotion: 'neutral',
409
+ text: '',
410
+ uid: null,
411
+ talking: false,
412
+ text_labelId: 'text_1_3_nlrZkvkR',
413
+ alias_labelId: 'alias_1_3_nlrZk5Yp'
414
+ }, {
415
+ emotion: 'neutral',
416
+ text: '',
417
+ uid: null,
418
+ talking: false,
419
+ text_labelId: 'text_1_4_nlrZlZIQ',
420
+ alias_labelId: 'alias_1_4_nlrZlHKA'
421
+ }],
422
+ audioId: 'patata',
423
+ audio: {
424
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/audio/5f646497f6d21e001139b0ed/coin.wav'
425
+ },
426
+ hasAlias: true,
427
+ text_labelId: 'text_1_nlrZlzvp',
428
+ audioId_labelId: 'audioId_1_nlrZlBHy'
429
+ }, {
430
+ name: 'Narrador',
431
+ text: 'Probando el voice over',
432
+ audioId: '',
433
+ voiceOver: true,
434
+ text_labelId: 'text_2_nylZEurm',
435
+ audioId_labelId: 'audioId_2_nylZECnV'
436
+ }],
437
+ background: {
438
+ imgId: '605369a5901f3e00123b81ca',
439
+ imgName: 'b27bb40dcb1189d14012131a35b48a36.jpeg',
440
+ img: {
441
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/image/605369a5901f3e00123b81ca/b27bb40dcb1189d14012131a35b48a36.jpeg'
442
+ }
443
+ },
444
+ characters: [{
445
+ name: 'Male adult medium-skinned 12',
446
+ resourceId: '5f68d7b6a373890011a78a11',
447
+ resource: {
448
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f68d7b6a373890011a78a11/ch0010_carlo_saggio.glb',
449
+ animations: animations
450
+ },
451
+ type: 'character',
452
+ uid: 'DbKslR'
453
+ }, {
454
+ name: 'Male senior dark-skinned 01',
455
+ resourceId: '5f5214cec39e26001123797f',
456
+ resource: {
457
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f5214cec39e26001123797f/ch0112_philip_001.glb',
458
+ animations: animations
459
+ },
460
+ type: 'character',
461
+ uid: 'kjTHqi'
462
+ }]
463
+ };
464
+ exports.voiceOverProps = voiceOverProps;
465
+ var withoutBackground = {
466
+ lines: [{
467
+ flex: false,
468
+ slots: [{
469
+ emotion: 'neutral',
470
+ text: '',
471
+ uid: 'DbKslR',
472
+ talking: false,
473
+ alias: 'paco',
474
+ text_labelId: 'text_0_0_nlrZh8Np',
475
+ alias_labelId: 'alias_0_0_nlrZh2Iq'
476
+ }, {
477
+ emotion: 'neutral',
478
+ text: '',
479
+ uid: null,
480
+ talking: false,
481
+ text_labelId: 'text_0_1_nlrZiNfB',
482
+ alias_labelId: 'alias_0_1_nlrZijhw'
483
+ }, {
484
+ emotion: 'neutral',
485
+ text: '',
486
+ uid: null,
487
+ talking: false,
488
+ text_labelId: 'text_0_2_nlrZiBF3',
489
+ alias_labelId: 'alias_0_2_nlrZiR6G'
490
+ }, {
491
+ emotion: 'neutral',
492
+ text: '',
493
+ uid: null,
494
+ talking: false,
495
+ text_labelId: 'text_0_3_nlrZinJN',
496
+ alias_labelId: 'alias_0_3_nlrZjLWB'
497
+ }, {
498
+ emotion: 'neutral',
499
+ text: 'Hola!',
500
+ uid: 'kjTHqi',
501
+ talking: true,
502
+ alias: 'manolo',
503
+ text_labelId: 'text_0_4_nlrZjUV9',
504
+ alias_labelId: 'alias_0_4_nlrZj81d'
505
+ }],
506
+ audioId: '5f1078861d84860011e179d0',
507
+ audio: {
508
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/documents/Cat-sound.mp3'
509
+ },
510
+ hasAlias: true,
511
+ text_labelId: 'text_0_nlrZj4Nr',
512
+ audioId_labelId: 'audioId_0_nlrZkkdo'
513
+ }, {
514
+ flex: false,
515
+ slots: [{
516
+ emotion: 'neutral',
517
+ text: 'Hola manolo! Manten la distancia social! fus!\n',
518
+ uid: 'DbKslR',
519
+ talking: true,
520
+ alias: 'paco',
521
+ text_labelId: 'text_1_0_nlrZkQmc',
522
+ alias_labelId: 'alias_1_0_nlrZkgt4'
523
+ }, {
524
+ emotion: 'neutral',
525
+ text: '',
526
+ uid: 'kjTHqi',
527
+ talking: false,
528
+ alias: 'manolo',
529
+ text_labelId: 'text_1_1_nlrZk7vR',
530
+ alias_labelId: 'alias_1_1_nlrZkUf9'
531
+ }, {
532
+ emotion: 'neutral',
533
+ text: '',
534
+ uid: null,
535
+ talking: false,
536
+ text_labelId: 'text_1_2_nlrZkw4D',
537
+ alias_labelId: 'alias_1_2_nlrZkKz8'
538
+ }, {
539
+ emotion: 'neutral',
540
+ text: '',
541
+ uid: null,
542
+ talking: false,
543
+ text_labelId: 'text_1_3_nlrZkvkR',
544
+ alias_labelId: 'alias_1_3_nlrZk5Yp'
545
+ }, {
546
+ emotion: 'neutral',
547
+ text: '',
548
+ uid: null,
549
+ talking: false,
550
+ text_labelId: 'text_1_4_nlrZlZIQ',
551
+ alias_labelId: 'alias_1_4_nlrZlHKA'
552
+ }],
553
+ audioId: 'patata',
554
+ audio: {
555
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/58dccfba26561500117caf53/audio/5f646497f6d21e001139b0ed/coin.wav'
556
+ },
557
+ hasAlias: true,
558
+ text_labelId: 'text_1_nlrZlzvp',
559
+ audioId_labelId: 'audioId_1_nlrZlBHy'
560
+ }, {
561
+ name: 'Narrador',
562
+ text: 'Probando el voice over',
563
+ audioId: '',
564
+ voiceOver: true,
565
+ text_labelId: 'text_2_nylZEurm',
566
+ audioId_labelId: 'audioId_2_nylZECnV'
567
+ }],
568
+ background: {},
569
+ characters: [{
570
+ name: 'Male adult medium-skinned 12',
571
+ resourceId: '5f68d7b6a373890011a78a11',
572
+ resource: {
573
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f68d7b6a373890011a78a11/ch0010_carlo_saggio.glb',
574
+ animations: animations
575
+ },
576
+ animations: animations,
577
+ type: 'character',
578
+ uid: 'DbKslR'
579
+ }, {
580
+ name: 'Male senior dark-skinned 01',
581
+ resourceId: '5f5214cec39e26001123797f',
582
+ resource: {
583
+ url: 'https://s3-eu-west-1.amazonaws.com/gl-lms-storage/development/clients/5981fca94d82290bcbe957fe/character/5f5214cec39e26001123797f/ch0112_philip_001.glb',
584
+ animations: animations
585
+ },
586
+ animations: animations,
587
+ type: 'character',
588
+ uid: 'kjTHqi'
589
+ }]
590
+ };
591
+ exports.withoutBackground = withoutBackground;