1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! # The Ambient Rust API
//!
//! Welcome to the Ambient Rust API! This API allows you to write logic for Ambient, the multiplayer game engine, in Rust.
//!
//! The Ambient Book can be found [here](https://ambientrun.github.io/Ambient/).
//!
//! Ambient has first-class support for Rust. Please report any issues you encounter to the repository.
/// Retrieval of assets and where to find them.
/// Helper functions for the camera.
/// ECS-related functionality not directly related to entities.
/// Manipulation, creation, removal, search and more for entities.
/// Global functions and types for your convenience.
/// Messaging to other packages and to the other side of the network boundary.
/// Player-specific functionality.
/// Helpful imports that almost all Ambient packages will use.
/// Animation functions
/// Package-related functionality.
/// Internal implementation details.
pub use main;
use ambient_core;
pub use ambient_core as core;
use once_cell;