Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.77 KB

File metadata and controls

58 lines (37 loc) · 1.77 KB

Spatalyzer Package Icon

Splatalyzer

Splatalyzer is a Swift package that enables the analysis of Splatoon 3 builds. It also provides structures representing main weapons, sub weapons, special weapons, gear builds, abilities and more.

Splatalyzer includes a companion package, SplatalyzerUI, that contains SwiftUI views for displaying weapon kits, gear builds, abilities, and build statistics.

The package works locally, relying on resources included within the package.

The build analysis and functionality of this package is heavily based on sendou.ink's build analysis.

Installation

Xcode Project Dependency

Within a Xcode project, go to File > Add Package Dependecies and search for:

https://github.com/cengelbart39/Splatalyzer.git

Then chose Splatalyzer or SplatalyzerUI.

Swift Package

In your Package.swift file, add the following to dependencies:

.package(url: "https://github.com/cengelbart39/Splatalyzer.git"),

Then add it as a dependency to your target:

.target(name: "<target>", dependencies: [
    .product(name: "Splatalyzer", package: "Splatalyzer"),
]),

or

.target(name: "<target>", dependencies: [
    .product(name: "SplatalyzerUI", package: "Splatalyzer"),
]),

Documention

The documentation on Splatalyzer can be found here.

Information about package localization can also be found here.

Disclaimer

Splatoon is a trademark and copyright of Nintendo 2014-2026. Splatalyzer is not affilated with Nintendo.