Giter Site home page Giter Site logo

aecsocket / demeter Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 2.6 MB

Platform-agnostic weather and season effects

Home Page: https://gitlab.com/phosphorous/demeter

License: GNU Affero General Public License v3.0

Kotlin 4.64% Java 95.36%
kotlin minecraft

demeter's Introduction

Demeter banner

1.1.0-SNAPSHOT: build

Provides several features which imitate real-life natural effects, such as seasons, weather types, and temperature.

Features

  • Time dilation for day/night, influenced by season
  • Fully configurable seasons, able to change foliage colour
  • Dynamic climate, determining temperature/humidity at positions in the world
  • Crop fertility based on climate
  • Expanded weather effects like rain, snowstorms, sandstorms
  • ...and everything is able to be exposed in a display e.g. boss/action bar
  • All licensed under GNU GPL v3

Possibly:

  • PAPI support?

Usage

Downloads

Dependencies

Paper

Packages

Using any package from the GitHub Packages registry requires you to authorize with GitHub Packages.

To create a token:

  1. Visit https://github.com/settings/tokens/new
  2. Create a token with only the read:packages scope
  3. Save that token as an environment variable and use that in builds

Note: Never include your token directly in your build scripts! Always use an environment variable (or similar).

Maven

In ~/.m2/settings.xml

<servers>
  <server>
    <id>github-demeter</id>
    <username>[username]</username>
    <password>[token]</password>
  </server>
</servers>

In pom.xml

Repository

<repositories>
  <repository>
    <id>github-demeter</id>
    <url>https://maven.pkg.github.com/aecsocket/demeter</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Dependency

<dependencies>
  <dependency>
    <groupId>com.github.aecsocket</groupId>
    <artifactId>demeter-[module]</artifactId>
    <version>[version]</version>
  </dependency>
</dependencies>
Gradle

The Kotlin DSL is used here.

When building, make sure the GPR_USERNAME and GPR_TOKEN environment variables are set.

Repository

repositories {
    maven {
        url = uri("https://maven.pkg.github.com/aecsocket/demeter")
        credentials {
            username = System.getenv("GPR_USERNAME")
            password = System.getenv("GPR_TOKEN")
        }
    }
}

Dependency

dependencies {
    compileOnly("com.github.aecsocket", "demeter-[module]", "[version]")
}

Documentation

demeter's People

Contributors

aecsocket avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.