Merge branch '1.4.0-prep' into nightly

This commit is contained in:
Vortrex
2022-04-09 20:29:29 -05:00
4 changed files with 38 additions and 17 deletions

View File

@@ -171,6 +171,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);
}
@@ -364,7 +376,7 @@ function setElementDimension(element, dimension) {
// ===========================================================================
function setElementRotation(element, rotation) {
return element.setRotation(rotation);
return element.rotation = rotation;
}
// ===========================================================================
@@ -524,7 +536,7 @@ function getVehicleEngine(vehicle) {
// ===========================================================================
function getVehicleLocked(vehicle) {
return vehicle.locked;
return vehicle.lockedStatus;
}
// ===========================================================================