• 0

    posted a message on GLSL Acid Shaders
    Quote from ender_beater»

    can you update this to 1.9/1.10?


    Probably not gonna bother, I've moved on to a new shaderpack, Acid shaders will be added soon.

    Github
    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders
    Quote from The_H4x0r»

    dank


    Kinda dead tbh. Will probably add the acid effect to my new shaderpack, which will be ready for a preliminary release sometime this summer hopefully.
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from sp614x»

    The shaders hand light is smoother and has longer range.


    The range is entirely up to the shaderpack, it could be 5 blocks, or the entire view-distance, with basically no performance cost.
    Quote from sp614x»
    However it centers on the view point (camera) not on the player, so it may look strange in third-person mode.

    This is only an issue because shaderpack authors don't set their light position correctly. You can offset it a little in screen space to fix it, not sure if I've done this yet. The third-person issue could be mitigated fairly quickly if we had a uniform, I don't remember if we do or not.
    Posted in: Minecraft Mods
  • 1

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from sp614x»

    OptiFine Dynamic Lights in action



    It would be good if shaderpacks could disable dynamic hand lighting (because they can do it themselves, both quicker and without block flickering when you move around), while still maintaining the dynamic lighting from dropped objects.
    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders
    Quote from l1nk773 jump

    i said the shaders included worked yes i have the shaders mod (btw i don't mean this to be mean)


    I'm not talking about the in-game shaders. Go and download a different shaderpack from the GLSL Shaders Mod thread and see if they work on your setup.

    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders

    Did you install the GLSL Shaders Mod? Try a different shaderpack maybe.

    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders

    [quote=veldhuis94;../../../members/veldhuis94;1292876-glsl-acid-shaders?comment=50]

    i think the effect is much better in here.... it's a way older version of the shaders but is there any way to make the effect to look more like this?

    I've come to the conclusion that there is no difference. Whatever's going on in that video is a mix of the recording taking place at just the right time, a good structure and texture pack to showcase the shaders with, and the video possibly being speed up in parts.

    Posted in: Minecraft Mods
  • 0

    posted a message on Minema 3.2 - The smooth movie recorder

    Glad to see you're back. The new version seems completely stable, and the GUI is nice.


    Is there any chance of Optifine compatibility with chunk preloading? Specifically because of Optifine's extreme render distance. The two were compatible in 1.2.5.


    I don't really miss tiled rendering, but I thought I'd point out that the framebuffer object isn't a perfect replacement. The framebuffer object isn't restricted to your GPU's max output resolution (is that what the config is referring to as "maximum texture resolution"?). I recorded at 7680x4320 on my 780 ti, which has a listed max resolution of 4096x2160, this was with SUES Ultra and a 3x shadow resolution multiplier. The only thing that seems to bound recording resolution on my system is whether or not I have enough vram, as setting it too high will just crash Minecraft. My point is, while the framebuffer object has lots of advantages, it's basically useless on a lower end system, like the macbook pro I recorded Link Removed on, at 8k. Once again, I'm not asking for you to bring it back, I just wanted to point that out.

    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders
    Quote from JoeyMartin1958»

    I don't mind you uploading the pack.


    You're using a different version of the Animal Crossing shaders that what I've released. Perhaps you're using the original Animal Crossing Shaders code, way back from beta? I don't know, looked all over for the original code, but couldn't find it. The version I released is basically just these 2 lined:


    float distance2D = position.x * position.x + position.z * position.z;
    position.y -= min(distance2D / 20, 20);


    You can edit the 2 values in the second line (the two 20's) to adjust the radius of the world, and the maximum amount that surrounding terrain is lowered.



    SUES integration is pretty easy. You just need to add the shader transformation code (everything after position is defined, and before it's applied to gl_Position) to the SUES files. In the SUES files you need to add them right after position is defined. The SUES files that need to be edited are:


    gbuffers_terrain.vsh

    gbuffers_entities.vsh

    gbuffers_water.vsh

    gbuffers_shadow.vsh

    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders
    Quote from Beed28»

    Ah, yes, that. I've had problems with that too ever since the forums switched layout last year. Try reporting it to the forum staff.


    I'm not the first one to complain to the staff. I'm pretty sure it's an issue with whatever forum software they're using (I remember there being a big update a few years ago, and it's been crap ever since).


    Also you should look through my latest release, I fixed the block outline bug. The code is generic, so you could copy it directly from my pack and just edit the .vsh files with your shaders.

    Posted in: Minecraft Mods
  • 0

    posted a message on GLSL Acid Shaders
    Quote from botboy10»

    Do you think you could get rid of the waves/wobbliness in the distance to give it some kind of animal crossing effect where the earth curves in the distance as you walk?


    Quote from JoeyMartin1958 jump

    I second what botboy10 above me asked.


    I've had functioning Animal Crossing shaders for a while now, I just haven't gotten around to releasing them. I've partially fixed two different bugs in the shaders, one of them is optional and requires a bit more involvement on the installation side of things.


    I'll try and get these things released soon.


    Edit:

    Spent over an hour just on the thread because the formatting kept getting screwed up (looks fine in the editing view, but doesn't save correctly). That's why I've been sitting on the Animal Crossing Shaders for months, because I didn't want to deal with it.


    I also decided to abandon the second bug fix. It was to partially fix the out-of-view chunks error, but it was way to involved for anyone besides a small minority to deal with (and I don't think that many people are conscious of the issue anyway).

    Posted in: Minecraft Mods
  • 0

    posted a message on Shaders Mod (updated by karyonix)
    You can use these to calculate light attenuation in water. You've overestimated me a little bit. I spent a few hours playing around with this idea today and couldn't get it figured out. So far I've got to:(texture2D(depthtex1, texcoord.st) - texture2D(depthtex0, texcoord.st))


    This sort of provides what I need, but not completely. It seems to give a fog that only appears through transparent water. furthermore, I looked through the source and figured from that the only relevant file that depthtex is defined in is final. I haven't tested it in other files yet. The problem with this is even if I figured out how to get exactly what I needed, I don't know what to do with it in final.

    I couldn't figure out how to use shadowtex. I couldn't find any examples of it being used in SUES.

    I'm probably using depthtex incorrectly/being a general moron, but I really appreciate your help.

    Additionally, you can get the water's depth to surface in most cases using a method that I use in my shaders which assumes the water is plane


    I couldn't figure this out either. I looked through your shaders and didn't see it used anywhere either :(


    Quote from karyonix»
    It will badly affect performance. I don't want it. You may make a new mod to do that.

    I know even less about Java than I do about GLSL. Assuming I could figure out how to do this, I'd probably end up building it off of the source code you released for 1.7.10 because I don't know how to make a forge mod.

    I'm not trying to complain here, I just need to know: is it possible to find a crude solution to my problem with a small amount of java knowledge, poking around in the source code for a few days?

    Sorry about all the hand-holding. Thanks for all the help.
    Posted in: Minecraft Mods
  • 0

    posted a message on Shaders Mod (updated by karyonix)
    Hey Karyonix I've got another question playing with SUES. The issue I'm having is that you can see to the bottom of a water volume no matter how deep it is. The default water-light-falloff is overwritten. This is because of the default lighting system is overwritten and performed inside composite, but things that go on in composite don't appear through transparent materials. The only way of getting around the issue that I can think of is to move the skylight calculation back to its gbuffer.

    What I need is a skylight variable that only falls-off underwater. I don't know if this is possible, but if it is please share.



    Also I don't know if you saw my post from a few weeks ago:


    Hey Karyonix, I need help finding a workaround for this issue, specifically for my video. If possible it would also be nice if you found a public fix for it, as it's a pretty jarring issue in my Acid Shaders.

    This issue is this: If you have a vertex shader move blocks that are out of your FOV into your FOV, they will not be rendered. An here is an example video:


    The last part of the video shows a workaround: in 1.6.4, if your shaders have a composite program, and Optifine is not installed, only chunks on the odd x-axis are affected, and they only flicker instead of disappearing completely. Their rate of flickering is constant per second no matter the frame-rate, so if you shoot higher FPS footage (like I am for my project), then a lower ratio of frames will display the flickering. Finally, with frame-blending the effect becomes almost invisible.

    I would like to update my workflow from 1.6.4 to 1.7.10, however the workaround doesn't work, even without Optifine installed. I was hoping you would be able to get to the bottom of this issue, which has been around since at least 1.2.5.

    Finally I figured you may know more about this issue now, considering you worked on the out-of-FOV chunks casting shadows issue.


    Just from thinking about it, you could fix it by forcing all chunks to load regardless of where the player is looking, doing what I believe disabling Advanced OpenGL is supposed to do.
    Posted in: Minecraft Mods
  • 0

    posted a message on [Forge] [v5.5.0] Cheating Essentials - Cheat anything you want - Fixed ALCore link.
    Quote from MrPonyCaptain»
    You need to install ALCore. http://adf.ly/w1Ls8 :D

    That's what I get for not reading the instructions :^)
    Posted in: Minecraft Mods
  • 0

    posted a message on [Forge] [v5.5.0] Cheating Essentials - Cheat anything you want - Fixed ALCore link.
    Getting this crash with about 50 mods installed. I can whittle it down and figure out which mod it is that's causing it if you need.
    Posted in: Minecraft Mods
  • To post a comment, please .