pub struct Package {
    pub is_package: (),
    pub enabled: bool,
    pub id: String,
    pub name: String,
    pub version: String,
    pub authors: Vec<String>,
    pub asset_url: String,
    pub client_modules: Vec<EntityId>,
    pub server_modules: Vec<EntityId>,
    pub optional: PackageOptional,
}
Expand description

Package: A package is a collection of assets, definitions and WASM logic.

Required:

  • is_package: Whether or not this entity is a package.
  • enabled: Whether or not this package is enabled.
  • id: The ID of the package.
  • name: The name of the package.
  • version: The version of the package.
  • authors: The authors of the package.
  • asset_url: The asset URL (i.e. where the built assets are) of the package.
  • client_modules: The clientside WASM modules spawned by this package.
  • server_modules: The serverside WASM modules spawned by this package.

Optional:

  • description: The description of the package. If not attached, the package does not have a description.
  • repository: The repository of the package. If not attached, the package does not have a repository.
  • for_playables: The playable IDs that this package is for. This package must be a Mod.

Fields§

§is_package: ()

Component: ambient_core::package::is_package

Component description: Whether or not this entity is a package.

§enabled: bool

Component: ambient_core::package::enabled

Component description: Whether or not this package is enabled.

§id: String

Component: ambient_core::package::id

Component description: The ID of the package.

§name: String

Component: ambient_core::package::name

Component description: The name of the package.

§version: String

Component: ambient_core::package::version

Component description: The version of the package.

§authors: Vec<String>

Component: ambient_core::package::authors

Component description: The authors of the package.

§asset_url: String

Component: ambient_core::package::asset_url

Component description: The asset URL (i.e. where the built assets are) of the package.

§client_modules: Vec<EntityId>

Component: ambient_core::package::client_modules

Component description: The clientside WASM modules spawned by this package.

§server_modules: Vec<EntityId>

Component: ambient_core::package::server_modules

Component description: The serverside WASM modules spawned by this package.

§optional: PackageOptional

Optional components.

Trait Implementations§

source§

impl Clone for Package

source§

fn clone(&self) -> Package

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Concept for Package

source§

fn make(self) -> Entity

Creates an entity with the components defined by this concept.
source§

fn get_spawned(id: EntityId) -> Option<Package>

If the entity with id exists and has the components defined by this concept, returns this concept with all of the values of the components in the entity. Read more
source§

fn get_unspawned(entity: &Entity) -> Option<Package>

If the entity has the components defined by this concept, returns this concept with all of the values of the components in the entity. Read more
source§

fn contained_by_spawned(id: EntityId) -> bool

Returns true if id exists and contains the components defined by this concept. Read more
source§

fn contained_by_unspawned(entity: &Entity) -> bool

Returns true if contains the components defined by this concept. Read more
source§

fn spawn(self) -> EntityId
where Self: Sized,

Spawns this concept into the world. If you want to modify state before spawning, use make instead.
source§

impl ConceptComponents for Package

§

type Required = (Component<()>, Component<bool>, Component<String>, Component<String>, Component<String>, Component<Vec<String>>, Component<String>, Component<Vec<EntityId>>, Component<Vec<EntityId>>)

A tuple of the required components for this concept.
§

type Optional = (Component<String>, Component<String>, Component<Vec<String>>)

A tuple of the optional components for this concept.
source§

fn required() -> <Package as ConceptComponents>::Required

Returns a tuple of the required components for this concept.
source§

fn optional() -> <Package as ConceptComponents>::Optional

Returns a tuple of the optional components for this concept.
source§

fn from_required_data( required: <<Package as ConceptComponents>::Required as ComponentsTuple>::Data ) -> Package

Converts a tuple of data back to a concept.
source§

fn as_query() -> ConceptQuery<Self>
where Self: Sized,

Creates a ConceptQuery that can be passed into queries. Read more
source§

impl Debug for Package

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Package

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Package, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for Package

source§

fn eq(&self, other: &Package) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Package

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for Package

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AsAny for T
where T: Any,

source§

fn as_any(&self) -> &(dyn Any + 'static)

source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

source§

fn type_name(&self) -> &'static str

Gets the type name of self
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast for T
where T: AsAny + ?Sized,

source§

fn is<T>(&self) -> bool
where T: AsAny,

Returns true if the boxed type is the same as T. Read more
source§

fn downcast_ref<T>(&self) -> Option<&T>
where T: AsAny,

Forward to the method defined on the type Any.
source§

fn downcast_mut<T>(&mut self) -> Option<&mut T>
where T: AsAny,

Forward to the method defined on the type Any.
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> ElementComponentName for T

source§

fn element_component_name(&self) -> &'static str

Returns the name of the type implementing ElementComponent.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> AnyCloneable for T
where T: Clone + Debug + Any + 'static,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,