Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ray-tracing for conda site-package, find the right path #163

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion genesis/vis/raytracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@
from genesis.engine import entities
from genesis.ext import trimesh

LRP_PATH = os.path.join(miscu.get_src_dir(), "ext/LuisaRender/build/bin")
# try to import LuisaRenderPy from the path specified by the environment variable LRP_PATH
lrp_path_env = os.getenv('LRP_PATH')

if lrp_path_env:
LRP_PATH = lrp_path_env
else:
# the default path
LRP_PATH = os.path.join(miscu.get_src_dir(), "ext/LuisaRender/build/bin")
try:
sys.path.append(LRP_PATH)
import LuisaRenderPy
Expand Down