File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -227,6 +227,42 @@ class Material:
227
227
Sets the value of a uniform for the shaders in the material.
228
228
"""
229
229
230
+ @property
231
+ def diffuse_texture (self ) -> Texture :
232
+ """
233
+ The diffuse :class:`Texture` .
234
+ """
235
+
236
+ @diffuse_texture .setter
237
+ def diffuse_texture (self , value :Texture ):
238
+ """
239
+ The diffuse :class:`Texture` .
240
+ """
241
+
242
+ @property
243
+ def specular_texture (self ) -> Texture :
244
+ """
245
+ The specular :class:`Texture` .
246
+ """
247
+
248
+ @specular_texture .setter
249
+ def specular_texture (self , value :Texture ):
250
+ """
251
+ The specular :class:`Texture` .
252
+ """
253
+
254
+ @property
255
+ def normals_texture (self ) -> Texture :
256
+ """
257
+ The normal :class:`Texture` .
258
+ """
259
+
260
+ @normals_texture .setter
261
+ def normals_texture (self , value :Texture ):
262
+ """
263
+ The normal :class:`Texture` .
264
+ """
265
+
230
266
class Model :
231
267
"""
232
268
Holds all model data for an imported 3D asset file.
Original file line number Diff line number Diff line change 13
13
project = 'Loxoc'
14
14
copyright = '2024, William A. Lim'
15
15
author = 'William A. Lim'
16
- release = '1.0.0.dev42 '
16
+ release = '1.0.0.dev43 '
17
17
18
18
# -- General configuration ---------------------------------------------------
19
19
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change 8
8
9
9
MODULE_NAME = "Loxoc"
10
10
11
- DEV_VERSION = 42
11
+ DEV_VERSION = 43
12
12
13
13
VERSION = f"1.0.0.dev{ DEV_VERSION } "
14
14
You can’t perform that action at this time.
0 commit comments