pixijs/pixi-haxe

View on GitHub
samples/src/filters/glow/Main.hx

Summary

Maintainability
Test Coverage

0.01 is a magic number
Open

        _count += 0.01;

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

0.5 is a magic number
Open

        _littleRobot.filters = [new GlowFilter(15, 2, 1, 0xFF0000, 0.5)];

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

0xFF0000 is a magic number
Open

        _littleRobot.filters = [new GlowFilter(15, 2, 1, 0xFF0000, 0.5)];

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

0xFFFFFF is a magic number
Open

        backgroundColor = 0xFFFFFF;

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

0.5 is a magic number
Open

        _littleRobot.anchor.set(0.5);

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

15 is a magic number
Open

        _littleRobot.filters = [new GlowFilter(15, 2, 1, 0xFF0000, 0.5)];

Checks that there are no magic numbers. By default, -1, 0, 1, and 2 are not considered to be magic numbers.

Invalid method name signature: main (name should be ~/^_[a-z][a-zA-Z0-9]*$/)
Open

    static function main() {
        new Main();
    }

Checks that method names conform to a format specified by the format property.

There are no issues that match your filters.

Category
Status