Unravel Engine C++ Reference
Loading...
Searching...
No Matches
asset_flags.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5namespace unravel
6{
7
8enum class load_flags
9{
11 reload,
13};
14
16enum class load_mode : uint8_t
17{
18 immediate,
20};
21
22} // namespace unravel
load_mode
Controls whether an asset is loaded immediately or deferred until first access.
Definition asset_flags.h:17
@ deferred
Register handle only; load triggered on first .get() call.
@ immediate
Schedule load on thread pool now (default, backward compatible).