Particle Data (Type) — SkBriggy

Addon: SkBriggy · Category: Type · Since: 1.1.0

Syntax

particledata

Description

Represents a particle along with its provided data. This is retrieved when using the `particle` argument. You can get the particle/data from this type using the appropriate expressions.

Examples

brig command /leparticle <p:particle> <loc:location>:
	trigger:
		set {_particle} to particle type of {_p}
		set {_data} to data type of {_p}
		if {_data} is set:
			make 1 of {_particle} using {_data} at {_loc} with extra 0
		else:
			make 1 of {_particle} at {_loc} with extra 0

View source