![]() |
#1
|
|||
|
|||
Move texture from one object to another
Hi,
I try to get a texture from an existing object and put it on another object in my scene. Does not work. e.g. soccerball3.texture(soccerball4.texture) Johannes |
#2
|
|||
|
|||
Hi,
You can't retrieve the texture of an object. You will have to create the texture within Vizard and then apply it to both objects: Code:
tex = viz.add('texture.jpg') soccerball3.texture(tex) soccerball4.texture(tex) |
#3
|
|||
|
|||
Quote:
Johannes |
![]() |
|
|