hytopia
Version:
The HYTOPIA SDK makes it easy for developers to create massively multiplayer games using JavaScript or TypeScript.
145 lines (144 loc) • 3.09 kB
text/typescript
const GAME_WALL_SHAPES = [
// lol shape
[
[],
[],
[],
],
// stairs
[
[],
[],
[],
[],
[],
],
// horizontal bar
[
[],
[],
],
// vertical bars
[
[],
[],
[],
[],
],
// lattice
[
[],
[],
[],
[],
[],
[],
[],
],
// platforming hole
[
[],
[],
[],
[],
[],
[],
],
// 3d stairs
[
[],
[],
[],
[],
],
// 3d lattice
[
[],
[],
[],
[],
[],
[],
[],
],
// full wall
[
[],
[],
[],
[],
],
// zig zag challenge
[
[],
[],
[],
[],
],
// triple jump
[
[],
[],
[],
],
// layered tunnel
[
[],
[],
[],
[],
],
// diagonal dash
[
[],
[],
[],
[],
[],
],
// wave rider
[
[],
[],
[],
[],
],
// forward momentum
[
[],
[],
[],
],
// spiral staircase
[
[],
[],
[],
[],
],
// hopscotch
[
[],
[],
[],
[],
],
// snake path
[
[],
[],
[],
[],
],
// diamond gate
[
[],
[],
[],
[],
[],
[],
[],
],
];
export default GAME_WALL_SHAPES;