SkillAgentSearch skills...

StarrySky

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

Install / Use

/learn @chihane/StarrySky
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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

View on GitHub
GitHub Stars5
CategoryDevelopment
Updated4y ago
Forks2

Languages

Java

Security Score

70/100

Audited on Sep 2, 2021

No findings