├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── aftman.toml ├── default.project.json ├── package.json ├── selene.toml ├── sourcemap.json ├── src ├── GetGuiColor │ ├── ClassHandlers │ │ ├── default.lua │ │ ├── image.lua │ │ ├── init.lua │ │ └── text.lua │ └── init.lua ├── GetWorldColor │ └── init.lua ├── Utils.lua └── init.lua └── wally.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/README.md -------------------------------------------------------------------------------- /aftman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/aftman.toml -------------------------------------------------------------------------------- /default.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/default.project.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/package.json -------------------------------------------------------------------------------- /selene.toml: -------------------------------------------------------------------------------- 1 | std = "roblox" 2 | -------------------------------------------------------------------------------- /sourcemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/sourcemap.json -------------------------------------------------------------------------------- /src/GetGuiColor/ClassHandlers/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetGuiColor/ClassHandlers/default.lua -------------------------------------------------------------------------------- /src/GetGuiColor/ClassHandlers/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetGuiColor/ClassHandlers/image.lua -------------------------------------------------------------------------------- /src/GetGuiColor/ClassHandlers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetGuiColor/ClassHandlers/init.lua -------------------------------------------------------------------------------- /src/GetGuiColor/ClassHandlers/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetGuiColor/ClassHandlers/text.lua -------------------------------------------------------------------------------- /src/GetGuiColor/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetGuiColor/init.lua -------------------------------------------------------------------------------- /src/GetWorldColor/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/GetWorldColor/init.lua -------------------------------------------------------------------------------- /src/Utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/Utils.lua -------------------------------------------------------------------------------- /src/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/src/init.lua -------------------------------------------------------------------------------- /wally.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boatbomber/PixelColorApproximation/HEAD/wally.toml --------------------------------------------------------------------------------