Skip to content

May there will be enough star light to make a beautiful starry night.

License

Notifications You must be signed in to change notification settings

chihane/StarrySky

Repository files navigation

StarryNight

StarryNight provides a piece of beautiful starry sky for you in a handy, customizable way as an Android library.

image

Get started

In project's build.gradle:

allprojects {
    repositories {
        // other repositories...
        maven { url "https://jitpack.io"}
    }
}

In app's build.gradle:

dependencies {
    // other dependencies...
    compile 'com.github.chihane:StarrySky:1.0.0'
}

Use StarrySky like a regular ViewGroup :

<chihane.starrysky.StarrySky
    android:id="@+id/starrySky"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

That's it!

Customization

StarMaker is the ONE who dominates the StarrySky and creates all Stars, decides how stars are like, how many they are and how they move.

These are things he can do:

StarMaker starMaker = StarMaker.with(context)
                .seed(seed)                             // The random seed
                .density(density)                       // How many stars there should be, [0f, 1f]
                .baseMagnitude(baseMagnitude)           // Base point of stars' luminance, [-6, 6]
                .magnitudeAmplitude(magnitudeAmplitude) // How random stars' luminance will be, [0, 6]
                .createGiantStar()                      // Red & blue giant stars will be created 
                .starTwinkles();                        // Stars will twinkle

Then let him dominate the sky:

sky.dominateBy(starMaker);

For more details, check the app demo.

Inspired by

NightView

About me

Chihane Habana

License

The MIT License

About

May there will be enough star light to make a beautiful starry night.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages