Element transient

This commit is contained in:
Vortrex
2022-01-02 20:07:57 -06:00
parent e985cd07e3
commit 70ba9e99b3
3 changed files with 18 additions and 1 deletions

View File

@@ -155,6 +155,18 @@ function setVehicleHeading(vehicle, heading) {
// ===========================================================================
function getElementTransient(element) {
return element.transient;
}
// ===========================================================================
function setElementTransient(element, state) {
return element.transient = state;
}
// ===========================================================================
function getVehicleSyncer(vehicle) {
return getElementSyncer(vehicle);
}