galacean-resource

Load GLTF models, textures, and materials via Galacean ResourceManager.

5|2|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/ArimaKana/galacean-skills --skill galacean-resource
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: galacean-resource
Source: https://github.com/ArimaKana/galacean-skills/tree/main/skills/galacean-resource
Command: npx skills add https://github.com/ArimaKana/galacean-skills --skill galacean-resource

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Galacean Resource Loading simplifies loading GLTF models, textures, and materials using the engine's ResourceManager, reducing boilerplate during initialization and runtime resource management.

Core Features & Use Cases

  • Asynchronous loading: resources are loaded without blocking the main thread.
  • Flexible types: supports GLTFResource, Texture2D, and other AssetTypes via ResourceManager.
  • Use Case: preload essential assets during startup or fetch assets on demand before scene render.

Quick Start

Load a GLTF model using ResourceManager and attach it to the scene to initialize resources.

Frequently Asked Questions about galacean-resource

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I load GLTF models and textures in Galacean Engine?

Load GLTF models and textures in Galacean Engine by using ResourceManager to fetch assets asynchronously. It supports GLTFResource, Texture2D, and other AssetType formats, reducing boilerplate during initialization and runtime resource management.

What is the best way to manage async loading for Galacean resources?

Manage async loading for Galacean resources via ResourceManager. It loads resources without blocking the main thread, supporting parallel and advanced loading patterns to efficiently fetch assets on demand before scene render.

Can I preload essential assets during startup using ResourceManager?

Yes, you can preload essential assets during startup using ResourceManager. It enables fetching assets on demand before scene render, allowing developers to initialize GLTF models, textures, and materials efficiently during engine setup.

Does Galacean ResourceManager support parallel loading patterns?

Yes, Galacean ResourceManager supports parallel loading patterns. It demonstrates advanced asynchronous loading techniques to fetch multiple resources concurrently, ensuring efficient initialization and scene setup without blocking the main thread.

Do I need engine initialization complete before loading Galacean textures?

Yes, you need engine initialization complete before loading Galacean textures because ResourceManager access is required. Once initialized, you can load Texture2D and other assets asynchronously without blocking the main thread.