Skip to content

Commit

Permalink
Merge pull request #72 from FNBBDevs/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ethanlchristensen authored Oct 13, 2024
2 parents 0dc547e + ad6b8c1 commit 744335a
Show file tree
Hide file tree
Showing 29 changed files with 513 additions and 690 deletions.
21 changes: 7 additions & 14 deletions bruhanimate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from .bruhutil import (
Screen,
Buffer,
images,
bruhimage,
get_image,
text_to_image,
LIFE_COLORS,
Expand All @@ -45,15 +45,11 @@
GREY_SCALES,
WIND_DIRECTIONS,
NOISE,
FLAKES,
FLAKE_COLORS,
FLAKE_JUMPS,
NEXT_FLAKE_MOVE,
SNOWFLAKE_COLORS,
FLAKE_WEIGHT_CHARS,
FLAKE_FLIPS,
TWINKLE_COLORS,
FLAKES,
VALID_INTERFACES,
SNOWFLAKE_TYPES
)

from .bruhrenderer import (
Expand Down Expand Up @@ -82,7 +78,7 @@
)


__version__ = "0.2.65"
__version__ = "0.2.69"
__valid_demos__ = [
"static_demo",
"offset_demo",
Expand Down Expand Up @@ -144,7 +140,7 @@
"PanRenderer",
"FocusRenderer",
"BackgroundColorRenderer",
"images",
"bruhimage",
"__version__",
"__valid_demos__",
"LIFE_COLORS",
Expand All @@ -157,12 +153,9 @@
"GREY_SCALES",
"WIND_DIRECTIONS",
"NOISE",
"FLAKES",
"FLAKE_COLORS",
"FLAKE_JUMPS",
"NEXT_FLAKE_MOVE",
"SNOWFLAKE_COLORS",
"SNOWFLAKE_TYPES",
"FLAKE_WEIGHT_CHARS",
"FLAKE_FLIPS",
"TWINKLE_COLORS",
"VALID_INTERFACES",
"get_image",
Expand Down
71 changes: 46 additions & 25 deletions bruhanimate/bruheffect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,53 @@
from .snow_effect import SnowEffect
from .twinkle_effect import TwinkleEffect, TWINKLE_SPEC
from .offset_effect import OffsetEffect
from .rain_effect import RainEffect
from .rain_effect import RainEffect
from .noise_effect import NoiseEffect


__all__ = [
"BaseEffect",
"StaticEffect",
"StarEffect",
"ChatbotEffect",
"DrawLinesEffect",
"GameOfLifeEffect",
"MatrixEffect",
"PlasmaEffect",
"SnowEffect",
"TwinkleEffect",
"OffsetEffect",
"RainEffect",
"NoiseEffect",
"GradientNoise",
"Loading",
"StringStreamer",
"Key",
"Line",
"TWINKLE_SPEC"
]

if sys.platform == 'win32':
if sys.platform == "win32":
from .audio_effect import AudioEffect
__all__.append("AudioEffect")
__all__ = [
"BaseEffect",
"AudioEffect",
"StaticEffect",
"StarEffect",
"ChatbotEffect",
"DrawLinesEffect",
"GameOfLifeEffect",
"MatrixEffect",
"PlasmaEffect",
"SnowEffect",
"TwinkleEffect",
"OffsetEffect",
"RainEffect",
"NoiseEffect",
"GradientNoise",
"Loading",
"StringStreamer",
"Key",
"Line",
"TWINKLE_SPEC",
]
else:
__all__ = [
"BaseEffect",
"StaticEffect",
"StarEffect",
"ChatbotEffect",
"DrawLinesEffect",
"GameOfLifeEffect",
"MatrixEffect",
"PlasmaEffect",
"SnowEffect",
"TwinkleEffect",
"OffsetEffect",
"RainEffect",
"NoiseEffect",
"GradientNoise",
"Loading",
"StringStreamer",
"Key",
"Line",
"TWINKLE_SPEC",
]
Loading

0 comments on commit 744335a

Please sign in to comment.