* Fetches initial Cinematic data and loads the ThangTypes. * @returns {Cinematic} The raw JSON object with Cinematic data.
()
| 34 | * @returns {Cinematic} The raw JSON object with Cinematic data. |
| 35 | */ |
| 36 | async loadAssets () { |
| 37 | this.loadThangTypes(this.data.shots) |
| 38 | this.loadPlayerThangTypes() |
| 39 | this.loadBackgroundObjects(this.data.shots) |
| 40 | await this.load() |
| 41 | return this.data |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Loads the player thangType from the global `me` object if accessible. |
no test coverage detected