Skip to content

Commit

Permalink
Fixed blurriness (finally)
Browse files Browse the repository at this point in the history
  • Loading branch information
heathercat123 committed Jun 28, 2024
1 parent 19b2d64 commit fde2ea7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# PAWS-Decomp

Decompilation of the 2023 mobile game Super Cat Tales: PAWS. This is the Android version 1.0.59 because that's what i have. For now, the app icons are missing and for whatever reason, sprites scale using bilinear filtering, which looks blurry.
Decompilation of the 2023 mobile game Super Cat Tales: PAWS. This is the Android version 1.0.59 because that's what i have.

Only issue is, some Air Native Extensions (ANEs) made by distriqt used in the game are paid. My (stupid) solution was to just... decompile them too and it... worked. For better accuracy, it would be appreciated if someone gave them to me. This may sound illegal, but in reality you need a key that isn't in the actual ANEs to use them. Neutronized's is somewhere in the decomp.

## Building

Expand All @@ -13,7 +15,7 @@ You will need the following software to be installed:
- [The Adobe Air SDK](https://airsdk.harman.com/).

#### Compiling

NOTE: These instrucions are made for VSCode ONLY. To compile from the command line, [install asconfigc](https://github.com/BowlerHatLLC/asconfigc?tab=readme-ov-file#installation) refer to [this](https://github.com/BowlerHatLLC/asconfigc?tab=readme-ov-file#command-line-usage).
1. Set the AIR_HOME environment variable to the path of your AIR sdk.
1. Open the directory of the decomp in Visual Studio.
1. Go to the **Terminal** menu and select **Run Build Task...**. Alternatively, use the Ctrl+Shift+B keyboard shortcut (or Command+Shift+B on macOS).
Expand Down
4 changes: 2 additions & 2 deletions asconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"output": "bin/CatGamePaws_android",
"signingOptions": {
"storetype": "pkcs12",
"keystore": "You have to specify your own cerftificate. This can help: https://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7f74.html"
"keystore": "You have to specify your own certificate. This can help: https://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7f74.html"
}
},
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ package starling.styles
* Subclasses must provide a constructor that can be called without any arguments. */
public function MeshStyle()
{
_textureSmoothing = TextureSmoothing.BILINEAR;
_textureSmoothing = TextureSmoothing.NONE;
_type = Object(this).constructor as Class;
}

Expand Down

0 comments on commit fde2ea7

Please sign in to comment.