1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Add quad cutter and painter

This commit is contained in:
tobspr
2020-05-17 00:21:33 +02:00
parent bce44188c8
commit cad6b357e3
25 changed files with 720 additions and 365 deletions

View File

@@ -35,7 +35,7 @@ export class ItemEjectorComponent extends Component {
/**
*
* @param {object} param0
* @param {Array<{pos: Vector, direction: enumDirection}>} param0.slots The slots to eject on
* @param {Array<{pos: Vector, direction: enumDirection}>=} param0.slots The slots to eject on
* @param {boolean=} param0.instantEject If the ejection is instant
*/
constructor({ slots = [], instantEject = false }) {

View File

@@ -8,6 +8,7 @@ import { gItemRegistry } from "../../core/global_registries";
export const enumItemProcessorTypes = {
splitter: "splitter",
cutter: "cutter",
cutterQuad: "cutterQuad",
rotater: "rotater",
rotaterCCW: "rotaterCCW",
stacker: "stacker",
@@ -15,6 +16,7 @@ export const enumItemProcessorTypes = {
mixer: "mixer",
painter: "painter",
painterDouble: "painterDouble",
painterQuad: "painterQuad",
hub: "hub",
};