#Is there a way to load burrito as a pathing mod within nexus?

1 messages · Page 1 of 1 (latest)

jade furnace
#

I tried to make nexus load burrito so I don't have to deal with the BlishHUD transparency shenanigans in linux. Since burrito also wants me to replace the dx3d11.dll I am not sure what to do or if it is even possible. I have seen there is a way to chainload this but I did not understand how to do it in this case. Pretty new to all of this, sorry if this question sounds stupid.

granite lodge
#

arename the burrito d3d11.dll to d3d11_chainload.dll

jade furnace
#

thanks for the fast response ❤️ Yeah I tried that previously but it doesnt load up ^^ It has to be next to the Gw2-64.exe, right?

jade furnace
#

Well i guess i will stick to blish hud 😄

thin parcel
#

you can use #world-render if you only care about the icons and markers. Pathing (with the arrows) is not yet done but it will be eventually (soon-ish?)

granite lodge
#

tomorrow OOOO

split thicket
granite lodge
#

in raids, gonna do it tomorrow OOOO

split thicket
split thicket
jade furnace
#

Ah very cool. Just installed it. Trying to figure out how to import markers atm

pastel elm
jade furnace
#

Thanks 😄 is there also a way to select which markers should be loaded? It looks like it just loads all of them

granite lodge
#

World renderer isn't ready for general use. rn, the loading is mostly for performance testing and stuff

#

so if u want to actually use this, don't

#

yet

jade furnace
#

haha alright ^^ Thanks for the info. But as of now everything seems to be very smooth. great work of the dev

#

once the pathing is implemented, there is no way i'll be going back to blish^^

split thicket
#

@jade furnace
Yes as it was already mentioned here, addon is not ready. Its more like technical demo I share with others so I can try performance for other PC that mine. I have really bad PC myself so I base performance optimizations on my PC.
Currently paths resulted into extreme amount of framedrop so I am trying to explore possibilities to have decent framerate with paths.
I currently wait for some changes by @foggy falcon to acquire more data for optimizing the backend and also changes in data submissions for backend renderer (basically currently I try to render whole map regardless of if you want/can see it or not).
and ye #world-render I occasionally drop update or something there, usually latest "stable" test build is in like pinned message.

jade furnace
split thicket
#

I am not sure how steam deck works because i never had it. I think steam works on linux as well and steamdeck is linux based? So if you can drop DLLs into that as well, I keep compatibility with linux as well.

jade furnace
polar thicket
#

There's a new work around to get BlishHUD working Linux using shaders.
https://github.com/FloFri/kwin-blishhud-shader
The new Blish HUD Linux work around relies on KDE for a transparency features. Unlike the old work around, it doesn't result in washed out graphics. GNOME users maybe stuck with the older washed out solution.
https://discord.gg/kdUX2qZq
For more info/discussions or assistance with the above.

GitHub

Contribute to FloFri/kwin-blishhud-shader development by creating an account on GitHub.

thin parcel
#

Sadly I haven't been able to make any of the fixes work in gaming mode on the steam deck. It only seems to work in desktop mode, probably because KDE isn't used in gaming mode. This is why a lot of us steam deck users wish to see every good blish HUD module ported to nexus

jade furnace
jade furnace
main moss
thin parcel
#

Until nexus releases their pathing add-on this will be a game changer

main moss
#

and my script to start burrito is pretty basic:

#!/usr/bin/env bash

function ctrl_c() {
  if [[ ! "${BURRITO_PID:-x}" == "x" ]]; then
    echo "Killing burrito.x86_64"
    kill "${BURRITO_PID}"
  fi
}

"${HOME}/Games/burrito/burrito.x86_64" &
export BURRITO_PID=$!

if [[ "${DESKTOP_SESSION}" =~ i3* ]]; then
  [ -x /usr/bin/wmctrl ] && /usr/bin/wmctrl -r "Guild Wars 2" -b add,below
  sleep 5
  i3-msg '[title="Burrito"] move position 0 78'
fi

trap ctrl_c INT

wait -f "${BURRITO_PID}"
#

but since I use picom, I also have this in the picom config file:

opacity-rule = [
"50:class_g = 'Burrito'"
];
maiden magnet
#

@polar thicket can i get an inv too please?

polar thicket
#

Someone posted a detailed guide on reddit, about a day after my post. I'd check that out, if interested in getting it working in Linux.