Souzooka

Results 26 issues of Souzooka

***PCSX2 version:*** PCSX2 1.5.0-dev3032 - **Notes**: In Stuntman, AI paths are slightly erroneous due to FPU rounding issues; the game is unable to be finished due rounding issues. This can...

Bug
Core
Vector Units
Recompiler
Interpreter

## Description There are three issues involving using `BulletWorld.set_contact_added_callback` in Python which I was able to identity: 1. The callback provided in `set_contact_added_callback` is provided a `BulletContactCallbackData`. However, this object...

bug
bullet

## Description I'm requesting that methods of C++ classes which are renamed in the Python bindings are given a short blurb indicating that they are equivalent to a specific C++...

enhancement

## Issue description Currently, a lot of attributes contained on ShowBase have properties with non-inferable types, and as such these attributes nor their methods/attributes are hinted in IDEs. ## Solution...

Example of problematic code: ```fs foo = { "start": (fazbar) => always_true() } bar = (fazbar) => always_true() bar(1) start = foo["start"] start(1) ``` While `bar` is invoked successfully, `start`...

After writing a function in my script, this error is thrown whenever opening the script and none of the achievements properly compile yet no errors are listed. The offending function:...

Currently, if a function returns an array or dictionary it is impossible to index that returned value directly: ```fs function ReturnsArr() { return [0] } function ReturnsDict() { return {0:...

Basically what it says on the tin. While certainly very minor, I have a scenario which could benefit from this optimization right now. I have leaderboards for individual level runs...

The following code: ```fs function foo(pred=(v) => v) { return always_true() } ``` will create the error `Default value for pred is not constant`. However, the following code: ```fs _...

I have a bitset of 65 bits (`CompassFlags`) and wish to measure the amount of bits set, and have achievements for when 20, 40, or all 65 of these bits...