Commit 4459490c authored by timel's avatar timel

fix: fmt

parent 37b4ea7f
...@@ -3,8 +3,8 @@ import { easings } from "@react-spring/web"; ...@@ -3,8 +3,8 @@ import { easings } from "@react-spring/web";
import { ygopro } from "@/api"; import { ygopro } from "@/api";
import { CardType, isMe } from "@/stores"; import { CardType, isMe } from "@/stores";
import { matConfig } from "@/ui/Shared"; import { matConfig } from "@/ui/Shared";
import type { SpringApi } from "./types"; import type { SpringApi } from "./types";
import { asyncStart } from "./utils"; import { asyncStart } from "./utils";
......
import { ygopro } from "@/api"; import { ygopro } from "@/api";
import { isMe } from "@/stores"; import { isMe } from "@/stores";
import { matConfig } from "@/ui/Shared"; import { matConfig } from "@/ui/Shared";
import { asyncStart, type MoveFunc } from "./utils"; import { asyncStart, type MoveFunc } from "./utils";
const { const {
BLOCK_WIDTH, BLOCK_WIDTH,
BLOCK_HEIGHT_M, BLOCK_HEIGHT_M,
BLOCK_HEIGHT_S,
COL_GAP, COL_GAP,
ROW_GAP, ROW_GAP,
DECK_OFFSET_X, DECK_OFFSET_X,
......
...@@ -2,8 +2,8 @@ import { easings } from "@react-spring/web"; ...@@ -2,8 +2,8 @@ import { easings } from "@react-spring/web";
import { ygopro } from "@/api"; import { ygopro } from "@/api";
import { isMe } from "@/stores"; import { isMe } from "@/stores";
import { matConfig } from "@/ui/Shared"; import { matConfig } from "@/ui/Shared";
import { asyncStart, type MoveFunc } from "./utils"; import { asyncStart, type MoveFunc } from "./utils";
const { const {
...@@ -26,10 +26,6 @@ export const moveToGround: MoveFunc = async (props) => { ...@@ -26,10 +26,6 @@ export const moveToGround: MoveFunc = async (props) => {
const { controller, zone, sequence, position, is_overlay } = location; const { controller, zone, sequence, position, is_overlay } = location;
// 根据zone计算卡片的宽度
const cardWidth =
zone === SZONE ? BLOCK_HEIGHT_S * CARD_RATIO : BLOCK_HEIGHT_M * CARD_RATIO;
let height = zone === SZONE ? BLOCK_HEIGHT_S : BLOCK_HEIGHT_M; let height = zone === SZONE ? BLOCK_HEIGHT_S : BLOCK_HEIGHT_M;
// 首先计算 x 和 y // 首先计算 x 和 y
......
import { ygopro } from "@/api"; import { ygopro } from "@/api";
import { cardStore, isMe } from "@/stores"; import { cardStore, isMe } from "@/stores";
import { matConfig } from "@/ui/Shared"; import { matConfig } from "@/ui/Shared";
import { asyncStart, type MoveFunc } from "./utils"; import { asyncStart, type MoveFunc } from "./utils";
const { const {
......
import { ygopro } from "@/api"; import { ygopro } from "@/api";
import { isMe } from "@/stores"; import { isMe } from "@/stores";
import { matConfig } from "@/ui/Shared"; import { matConfig } from "@/ui/Shared";
import { asyncStart, type MoveFunc } from "./utils"; import { asyncStart, type MoveFunc } from "./utils";
const { const {
BLOCK_WIDTH, BLOCK_WIDTH,
BLOCK_HEIGHT_M, BLOCK_HEIGHT_M,
BLOCK_HEIGHT_S,
COL_GAP, COL_GAP,
ROW_GAP, ROW_GAP,
CARD_HEIGHT_O, CARD_HEIGHT_O,
......
export * from "./YgoCard";
export * from "./css"; export * from "./css";
export * from "./YgoCard";
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment