mirror of
https://github.com/t-affeldt/minetest_moon_phase.git
synced 2025-01-07 00:30:29 +01:00
Add new artwork
This commit is contained in:
parent
77f6c3695c
commit
22528c2e67
12
README.md
12
README.md
@ -8,6 +8,12 @@ Make sure you have the latest version installed or [update your game](https://ww
|
|||||||
This mod has no hard dependencies whatsoever, so you can use it as you will.
|
This mod has no hard dependencies whatsoever, so you can use it as you will.
|
||||||
If you are also using *climate_api* then it will use the included skybox registration instead of overriding the player configuration. Thus, moon_phases will will be compatible with your weather packs.
|
If you are also using *climate_api* then it will use the included skybox registration instead of overriding the player configuration. Thus, moon_phases will will be compatible with your weather packs.
|
||||||
|
|
||||||
|
## Changes in v2.0
|
||||||
|
- New classic moon textures!
|
||||||
|
- Skybox changes. The sky will brighten up during a full moon and turn dark during a new moon.
|
||||||
|
- Less stored data: Moon cycle now used Minetest's ``get_day_count()`` and only stores a date offset when changed via commands.
|
||||||
|
- Climate API integration. Use moon phases with your favorite weather mod
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
This mod comes with two commands to print or change the current moon phase.
|
This mod comes with two commands to print or change the current moon phase.
|
||||||
- Use ``/moonphase`` to view the currently active phase.
|
- Use ``/moonphase`` to view the currently active phase.
|
||||||
@ -33,12 +39,12 @@ This results in a total cycle of 32 days.
|
|||||||
You can also set the default texture style for all players. You can choose between the same options as with the ``/set_moonstyle`` command.
|
You can also set the default texture style for all players. You can choose between the same options as with the ``/set_moonstyle`` command.
|
||||||
|
|
||||||
## LICENSE
|
## LICENSE
|
||||||
All source code is licensed under GNU LESSER GENERAL PUBLIC LICENSE version 3.
|
All source code is written by me and licensed under GNU LESSER GENERAL PUBLIC LICENSE version 3.
|
||||||
You can find a copy of that license in the repository.
|
You can find a copy of that license in the repository.
|
||||||
|
|
||||||
## Media
|
## Media
|
||||||
All moon textures marked as "classic" are made by me. You can use them under a CC0 license.
|
All moon textures marked as "classic" are made by Cap for this mod and usable under a *CC BY-SA (3.0)* license.
|
||||||
|
|
||||||
All included "realistic" moon textures are resized versions of graphics from *NASA's Scientific Visualization Studio* by [Ernie Wright](https://svs.gsfc.nasa.gov/cgi-bin/search.cgi?person=1059).
|
All included "realistic" moon textures are resized versions of graphics from *NASA's Scientific Visualization Studio* by [Ernie Wright](https://svs.gsfc.nasa.gov/cgi-bin/search.cgi?person=1059).
|
||||||
These images are part of the Public Domain as CC-BY-SA 3.0.
|
These images are part of the Public Domain as *CC BY-SA 3.0*.
|
||||||
You can access the entire (high resolution) album on [their website](https://svs.gsfc.nasa.gov/4769#28564). See [NASA's media guidelines](https://www.nasa.gov/multimedia/guidelines/index.html) for more information on licensing.
|
You can access the entire (high resolution) album on [their website](https://svs.gsfc.nasa.gov/4769#28564). See [NASA's media guidelines](https://www.nasa.gov/multimedia/guidelines/index.html) for more information on licensing.
|
||||||
|
2
mod.conf
2
mod.conf
@ -1,7 +1,7 @@
|
|||||||
name = moon_phases
|
name = moon_phases
|
||||||
title = Moon Phases
|
title = Moon Phases
|
||||||
author = TestificateMods
|
author = TestificateMods
|
||||||
release = 10100
|
release = 20000
|
||||||
description = """
|
description = """
|
||||||
Changes the moon to follow a cycle between eight different phases.
|
Changes the moon to follow a cycle between eight different phases.
|
||||||
Expect the sky to change every four nights (or configure a custom schedule).
|
Expect the sky to change every four nights (or configure a custom schedule).
|
||||||
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 289 KiB After Width: | Height: | Size: 1.3 MiB |
@ -1,2 +1,6 @@
|
|||||||
|
# The moon will switch to the next phase every X days.
|
||||||
moon_phases_cycle (Change moon phase every X days) int 4
|
moon_phases_cycle (Change moon phase every X days) int 4
|
||||||
|
|
||||||
|
# Use classic for a default-inspired set of textures.
|
||||||
|
# Use realistic for a set of down-scaled NASA photography.
|
||||||
moon_phases_style (Choose a default texture style) enum classic classic,realistic
|
moon_phases_style (Choose a default texture style) enum classic classic,realistic
|
Loading…
Reference in New Issue
Block a user