Assets.All
static IEnumerable`1 All{ get }
Description
This is an enumeration of all asset object loaded by StereoKit at the current moment.
Examples
Enumerating all Assets
With Assets.All, you can take a peek at all the currently loaded Assets! Here’s a quick example of iterating through all assets and dumping a quick summary to the log.
foreach (var asset in Assets.All)
Log.Info($"{asset.GetType().Name} - {asset.Id}");
Found an issue with these docs, or have some additional questions? Create an Issue on Github!