File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,32 @@ Please refer to [DOCS.md for v5.0.0b1](https://github.com/overdev/raylib-py/rele
180
180
Includes all symbols in raymath.h and rlgl.h
181
181
182
182
183
+ # # Using raylib-py with custom binaries:
184
+
185
+ When raylib- py is loading, it will check for the existence of a `.raylib` file in the current working dir .
186
+ The presence of this file allows the loading of binaries other than those provided by the raylib- py package.
187
+
188
+ Example of a `.raylib` file :
189
+
190
+ ```json
191
+ {
192
+ " raylib" : {
193
+ " win32" : {
194
+ " 32bit" : " path/to/raylib/filename.dll" ,
195
+ " 64bit" : " path/to/raylib/filename.dll"
196
+ },
197
+ " linux" : {
198
+ " 32bit" : " path/to/raylib/filename.so" ,
199
+ " 64bit" : " path/to/raylib/filename.so"
200
+ },
201
+ " darwin" : {
202
+ " 64bit" : " path/to/raylib/filename.dylib"
203
+ }
204
+ }
205
+ }
206
+ ```
207
+
208
+
183
209
## Issues:
184
210
- Callback for logging will not work
185
211
You can’t perform that action at this time.
0 commit comments