Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions fission/src/systems/match_mode/DefaultMatchModeConfigs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DefaultMatchModeConfigs {
teleopTime: 135,
endgameTime: 20,
ignoreRotation: true,
maxHeight: Infinity,
maxHeight: Number.MAX_SAFE_INTEGER,
heightLimitPenalty: 0,
sideMaxExtension: convertFeetToMeters(1.5),
sideExtensionPenalty: 0,
Expand Down Expand Up @@ -60,9 +60,9 @@ class DefaultMatchModeConfigs {
teleopTime: 15,
endgameTime: 5,
ignoreRotation: true,
maxHeight: Infinity,
maxHeight: Number.MAX_SAFE_INTEGER,
heightLimitPenalty: 0,
sideMaxExtension: Infinity,
sideMaxExtension: Number.MAX_SAFE_INTEGER,
sideExtensionPenalty: 0,
}
}
Expand All @@ -76,9 +76,9 @@ class DefaultMatchModeConfigs {
teleopTime: 135,
endgameTime: 20,
ignoreRotation: true,
maxHeight: Infinity,
maxHeight: Number.MAX_SAFE_INTEGER,
heightLimitPenalty: 2,
sideMaxExtension: Infinity,
sideMaxExtension: Number.MAX_SAFE_INTEGER,
sideExtensionPenalty: 2,
}
}
Expand Down
4 changes: 3 additions & 1 deletion fission/src/ui/components/StyledComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
import { GiSteeringWheel } from "react-icons/gi"
import { GrConnect } from "react-icons/gr"
import { HiDownload } from "react-icons/hi"
import { IoCheckmark, IoPencil, IoPeople, IoTrashBin } from "react-icons/io5"
import { IoCheckmark, IoPencil, IoPeople, IoPlayOutline, IoTrashBin } from "react-icons/io5"
import Label from "./Label"

export class SynthesisIcons {
Expand All @@ -50,6 +50,7 @@ export class SynthesisIcons {
public static readonly CONNECT = <GrConnect />
public static readonly INFO = <AiOutlineInfoCircle />
public static readonly BUG = <FaBug />
public static readonly PLAY = <IoPlayOutline />

/** Large icons: used for icon buttons */
public static readonly DELETE_LARGE = <IoTrashBin size={"1.25rem"} />
Expand All @@ -62,6 +63,7 @@ export class SynthesisIcons {
public static readonly LEFT_ARROW_LARGE = <FaArrowLeft size={"1.25rem"} />
public static readonly BUG_LARGE = <FaBug size={"1.25rem"} />
public static readonly XMARK_LARGE = <FaXmark size={"1.25rem"} />
public static readonly PLAY_LARGE = <IoPlayOutline size={"1.25rem"} />

public static readonly OPEN_HUD_ICON = (
<FaAngleRight
Expand Down
Loading
Loading