nextjs-test/app/constant/index.ts

82 lines
1.4 KiB
TypeScript

import { ObjectType } from "../types";
export const option = [
{
value: "/unity/3d-test/Build/3d-test",
name: "3d-test",
description:
"마우스 오른쪽 키다운으로 카메라 각도 조절, WASD로 이동, Shift로 가속하는 것까지 구현되었습니다.",
},
{
value: "/unity/kartrider/Build/kartrider",
name: "kartrider",
description: "튜토리얼을 진행하며 만든 카트라이더 게임입니다.",
},
{
value: "/unity/test-project/build",
name: "test-project",
description: "처음 만든 프로젝트입니다.",
},
];
// 가상의 가로, 세로, 대각선
export const ohg: ObjectType[] = [
{
value: 0,
label: "ohg1",
length: {
horizontal: 10,
vertical: 10,
diagonal: 14,
},
},
{
value: 1,
label: "ohg2",
length: {
horizontal: 12,
vertical: 16,
diagonal: 20,
},
},
{
value: 2,
label: "ohg3",
length: {
horizontal: 10,
vertical: 24,
diagonal: 26,
},
},
];
export const frame: ObjectType[] = [
{
value: 0,
label: "frame1",
length: {
horizontal: 10,
vertical: 12,
diagonal: 14,
},
},
{
value: 1,
label: "frame2",
length: {
horizontal: 12,
vertical: 14,
diagonal: 16,
},
},
{
value: 2,
label: "frame3",
length: {
horizontal: 13,
vertical: 15,
diagonal: 17,
},
},
];