Capítulo 642 de 859

Chapter 642: Cache

Core Idea

A simple caching system, used internally by FileLoader. To enable caching across all loaders that use FileLoader, add THREE.Cache.enabled = true. once in your app.

Key Concepts

  • enabled : boolean: Whether caching is enabled or not.
  • files : Object.<string, Object>: A dictionary that holds cached files.

Reference Tables

Properties

PropertyDescription
.enabled : booleanWhether caching is enabled or not.
.files : Object.<string, Object>A dictionary that holds cached files.

Key Takeaways

  1. Most relevant properties: enabled, files.

Connects To