MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / pullNewParticles

Method pullNewParticles

source/game/StarStatusController.cpp:582–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

580}
581
582List<Particle> StatusController::pullNewParticles() {
583 List<Particle> newParticles;
584 for (auto const& animator : m_effectAnimators.netElements())
585 newParticles.appendAll(animator->dynamicTarget.pullNewParticles());
586 return newParticles;
587}
588
589Maybe<Json> StatusController::receiveMessage(String const& message, bool localMessage, JsonArray const& args) {
590 Maybe<Json> result = m_primaryScript.handleMessage(message, localMessage, args);

Callers

nothing calls this directly

Calls 2

netElementsMethod · 0.80
appendAllMethod · 0.80

Tested by

no test coverage detected