10 lines
170 B
Python
10 lines
170 B
Python
from os import path
|
|
|
|
def texture_path(s):
|
|
#return path.join('..', 'texture', s)
|
|
return s
|
|
|
|
def model_path(s):
|
|
#return path.join('..', 'model', s)
|
|
return s
|