Skip to content

Commit 396e27b

Browse files
committed
fix wrong resorces path
1 parent 5f20557 commit 396e27b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_classes/resources/resource_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33
import bpy
44

5-
MTREE_RESOURCE_DIR = r"./resources"
5+
MTREE_RESOURCE_DIR = (Path(__file__).parent.parent.parent / "resources").resolve()
66

77
class ResourceUtils:
88

0 commit comments

Comments
 (0)