14 lines
No EOL
253 B
Python
14 lines
No EOL
253 B
Python
"""
|
|
This shows how to use the Pyray wrapper around the static binding.
|
|
"""
|
|
|
|
import pyray as pr
|
|
|
|
print(pr.WHITE)
|
|
print(pr.MOUSE_BUTTON_LEFT)
|
|
print(pr.MOUSE_LEFT_BUTTON )
|
|
print(pr.MATERIAL_MAP_SPECULAR)
|
|
|
|
import raylib as rl
|
|
|
|
print(rl.MATERIAL_MAP_DIFFUSE) |