添加X环显示,比赛过程完善
This commit is contained in:
@@ -92,8 +92,10 @@ const simulShoot = async () => {
|
||||
if (device.value.deviceId) await simulShootAPI(device.value.deviceId);
|
||||
};
|
||||
const simulShoot2 = async () => {
|
||||
if (device.value.deviceId)
|
||||
await simulShootAPI(device.value.deviceId, 0.01, 0.01);
|
||||
if (device.value.deviceId) {
|
||||
const r1 = Math.random() > 0.5 ? 0.01 : 0.02;
|
||||
await simulShootAPI(device.value.deviceId, r1, r1);
|
||||
}
|
||||
};
|
||||
|
||||
const env = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user