test build
Deploy / build_and_push_images (push) Successful in 1m37s Details
Deploy / deploy_to_server_dev (push) Successful in 36s Details

This commit is contained in:
Kseninia Mikhaylova 2024-07-25 15:20:45 +03:00
parent 682fd89dd6
commit 7d18de8981
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ onLoop(() => {
if (target.value) {
const point = model.value.position[element.axis]
let step = stepbase * target.value[element.axis as vectorType]
console.log({ point, step })
// console.log({ point, step })
if (step !== 0) {
// if (Math.abs(point) >= Math.abs(target.value[element.axis as vectorType])) {
// step = 0
// }
if (model.value.hasOwnProperty(element.func)) {
if (model.value !== undefined && model.value[element.func] !== undefined) {
model.value[element.func](step)
}
}