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
5
namespace
unravel
6
{
7
8
enum class
load_flags
9
{
10
standard
,
11
reload
,
12
do_not_unload
13
};
14
16
enum class
load_mode
: uint8_t
17
{
18
immediate
,
19
deferred
20
};
21
22
}
// namespace unravel
unravel
Definition
crash.cpp:21
unravel::load_mode
load_mode
Controls whether an asset is loaded immediately or deferred until first access.
Definition
asset_flags.h:17
unravel::load_mode::deferred
@ deferred
Register handle only; load triggered on first .get() call.
unravel::load_mode::immediate
@ immediate
Schedule load on thread pool now (default, backward compatible).
unravel::load_flags
load_flags
Definition
asset_flags.h:9
unravel::load_flags::reload
@ reload
unravel::load_flags::do_not_unload
@ do_not_unload
unravel::load_flags::standard
@ standard
engine
engine
assets
asset_flags.h
Generated by
1.12.0