Old clip glitch

Post Reply
User avatar
AiTechEye
Member
Posts: 1000
Joined: Fri May 29, 2015 21:14
GitHub: AiTechEye
Location: Sweden

Old clip glitch

by AiTechEye » Post

Image

when is it going to be fixed?
Attachments
m.gif
m.gif (812.2 KiB) Viewed 714 times

User avatar
pampogokiraly
Member
Posts: 293
Joined: Wed Jan 08, 2020 22:21
In-game: i_love_mesecon

Re: Old clip glitch

by pampogokiraly » Post

(i can't wait...)
All praise the Bacon God! The one and only god in MineTest

User avatar
bosapara
Member
Posts: 637
Joined: Fri Apr 07, 2017 08:49

Re: Old clip glitch

by bosapara » Post

Easy fix: just make post effect for all nodes (besides liquids)

Image

Code: Select all

minetest.register_node("default:dirt", {
	description = "Dirt",
	tiles = {"default_dirt.png"},
	groups = {crumbly = 3, soil = 1},
	sounds = default.node_sound_dirt_defaults(),
	post_effect_color = {a = 255, r = 0, g = 0, b = 0},
})

Edited, add this code as mod

Code: Select all

minetest.after(0, function() 
    for name,def in pairs(minetest.registered_nodes) do
        if (def.drawtype ~= "liquid") then
            minetest.override_item(name, {
		post_effect_color = {a = 255, r = 0, g = 0, b = 0},
	    })
        end
    end
end)
:

sfan5
Moderator
Posts: 4094
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

Re: Old clip glitch

by sfan5 » Post

I don't see an issue with this.
Forcing yourself inside a node only lets you see through the world if you have the "noclip" privilege and Noclip mode enabled.
Mods: Mesecons | WorldEdit | Nuke & Minetest builds for Windows (32-bit & 64-bit)

User avatar
AiTechEye
Member
Posts: 1000
Joined: Fri May 29, 2015 21:14
GitHub: AiTechEye
Location: Sweden

Re: Old clip glitch

by AiTechEye » Post

sfan5 wrote:
Mon Jun 08, 2020 08:39
I don't see an issue with this.
Forcing yourself inside a node only lets you see through the world if you have the "noclip" privilege and Noclip mode enabled.
nope, everyone can do it

sfan5
Moderator
Posts: 4094
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

Re: Old clip glitch

by sfan5 » Post

Doesn't work here at least, maybe it requires very precise player positioning?
Image
Mods: Mesecons | WorldEdit | Nuke & Minetest builds for Windows (32-bit & 64-bit)

User avatar
Hume2
Member
Posts: 709
Joined: Tue Jun 19, 2018 08:24
GitHub: Hume2
In-game: Hume2
Location: Czech Republic

Re: Old clip glitch

by Hume2 » Post

Look at this frame from your gif:
Image

I somehow can't place sand that close to the player. However, I can place it above myself and let it fall. And it results in the same behaviour.

It happens when the player is in the air next to the wall but he is still close enough to the wall. The camera isn't a single point, it's a rectangle placed in front of the point and it intersects the wall. The player is still outside the wall so Minetest thinks that the player is not obstructed so his screen isn't darkened.
Attachments
2.png
2.png (25.53 KiB) Viewed 714 times
If you lack the reality, go on a trip or find a job.

User avatar
AiTechEye
Member
Posts: 1000
Joined: Fri May 29, 2015 21:14
GitHub: AiTechEye
Location: Sweden

Re: Old clip glitch

by AiTechEye » Post

it works if you are facing to x+ or z+ and are very near the edge, if you step in the screen becomes black


Image
Attachments
screenshot_20200609_133522.png
screenshot_20200609_133522.png (931.55 KiB) Viewed 714 times

User avatar
paramat
Developer
Posts: 3700
Joined: Sun Oct 28, 2012 00:05
GitHub: paramat
IRC: paramat
Location: UK

Re: Old clip glitch

by paramat » Post

This seems to be caused by the 'near plane setting' of the camera, there is a PR to avoid this happening, cannot remember if it has been merged yet or not.

Sires
Member
Posts: 190
Joined: Mon Jan 02, 2017 21:00
GitHub: Sires0
IRC: Sires
In-game: Sires Sores Siri Seris or anything ppl call me
Location: :noitacoL

Re: Old clip glitch

by Sires » Post

You can just change to third person camera in a corner. Should be easier to replicate that way. Always used it to find caves :P
I don't have anything important to say.

Post Reply

Who is online

Users browsing this forum: ROllerozxa and 3 guests