| Age | Commit message (Collapse) | Author |
|
|
|
4dir is like facedir, but only for 4 horizontal directions: NESW. It is identical in behavior to facedir otherwise. The reason why game makers would want to use this over facedir is 1) simplicity and 2) you get 6 free bits.
It can be used for things like chests and furnaces and you don't need or want them to "flip them on the side" (like you could with facedir).
color4dir is like colorfacedir, but you get 64 colors instead of only 8.
|
|
fixes #12657
|
|
|
|
Co-authored-by: SmallJoker <SmallJoker@users.noreply.github.com>
Co-authored-by: sfan5 <sfan5@live.de>
|
|
Co-authored-by: Lars Mueller <appgurulars@gmx.de>
Co-authored-by: sfan5 <sfan5@live.de>
Co-authored-by: lhofhansl <lhofhansl@yahoo.com>
|
|
|
|
|
|
* Also remove unused Sky::getSkyBodyOrbitTilt method
Fixes misalignment of sun position and shadow direction at high tilt values.
|
|
|
|
* Avoid calling TimeTaker too frequently in renderMapXXX
* Calculate animation timer once per frame
* Remove code that breaks rendering frame at 2000ms
Co-authored-by: sfan5 <sfan5@live.de>
Co-authored-by: sfan5 <sfan5@live.de>
|
|
Co-authored-by: sfan5 <sfan5@live.de>
|
|
Co-authored-by: sfan5 <sfan5@live.de>
|
|
|
|
|
|
Hardcode the variables to 0 on Android
|
|
Caused by wrong interpretation of the settingtypes.txt format
|
|
|
|
This was unintentionally removed in commit 1d69a23.
fixes #12048
|
|
|
|
This avoids the problem of offset nodes with visual_scale > 1.
|
|
|
|
Co-authored-by: sfan5 <sfan5@live.de>
|
|
|
|
|
|
Co-authored-by: Lars Mueller <appgurulars@gmx.de>
Co-authored-by: sfan5 <sfan5@live.de>
Co-authored-by: Dmitry Kostenko <codeforsmile@gmail.com>
|
|
Use SimpleSoundSpec where reasonable (OpenAL)
Ensure the sound IDs do not underflow or get overwritten -> loop in u16
Proper use of an enum.
|
|
Enforces the setting value bounds that are currently only limited by the GUI (settingtypes.txt).
|
|
|
|
* FormSpec: 9-slice images and animated_images
* Add fgimg_middle; clean up code
* Address issues, add tests
* Fix stupid error; bump formspec version
* Re-add image[] elements without a size
|
|
|
|
|
|
|
|
Dropped ServerSoundParams -> moved to ServerPlayingSound. This gets rid of the duplicated
'fade' and 'pitch' values on server-side where only one was used anyway.
SimpleSoundSpec is the basic sound without positional information, hence 'loop' is included.
Recursively added PROTOCOL_VERSION to most functions to reduce the versioning mess in the
future. Per-type version numbers are kept for now as a safety rope in a special case.
|
|
|
|
was broken in #10021 more than 2 years ago(!)
|
|
|
|
... before going node-level triangle search.
Fixes transparent grass on transparent land
|
|
New users find Minetest's account system confusing.
This change moves username/password to a new dialog,
with login and register buttons added to the Join Game tab.
The old registration confirmation dialog is removed in
favour of the new dialog.
Fixes #8138
|
|
|
|
This was added a long time ago in 42bbd5c9ae06a8d8ffb7915599097ead6f848755
and meant to fix prevent the view becoming black when jumping into a
ceiling, this no longer happens today.
|
|
bug introduced in 2f32044273d107e82fb1c35d4a0f616fa480cdf0
|
|
|
|
|
|
|
|
* Quantize light frustum calculations
Reduces shadow flicker
* Fix function name to match conventions
|
|
|
|
If the server stops talking to us without saying bye we
should actually end the in-game session with an error message.
|
|
* Rewrite shadow filtering for the new distortion
* Calculate penumbra radius using a single sample
* Avoid peter-panning effect due to filtering of short shadows
* Add adaptive filter quality for soft shadows
* Avoid sharp shadows on surfaces without normals (e.g. plants)
* Increase default and maximum soft shadow radius
* Make line numbers in shader errors match the code
|
|
Use MeshNode materials to set the light since ReadOnlyMaterials is now false
|