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: fresnel fade material not being referenced properly #88

Merged
1 commit merged into from
Mar 21, 2022
Merged
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
fix: fresnel fade material not being referenced properly
pepperoni505 committed Mar 21, 2022
commit 48e707d87ab473d9daa39f1ee59b85f322afcf25
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ def getMaterial(mat):
return MSFS_Invisible(mat)
elif mat.msfs_material_type == "msfs_fake_terrain":
return MSFS_Fake_Terrain(mat)
elif mat.msfs_material_type == "msfs_fresnel":
elif mat.msfs_material_type == "msfs_fresnel_fade":
return MSFS_Fresnel_Fade(mat)
elif mat.msfs_material_type == "msfs_env_occluder":
return MSFS_Environment_Occluder(mat)