Announcement

Collapse
No announcement yet.

way to create list of textures and objects they are assigned to ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • way to create list of textures and objects they are assigned to ?

    Does anyone knows a way to create list automatically of all objects in scene and what textures are assigned to them ?
    Luke Szeflinski
    :: www.lukx.com cgi

  • #2
    Does this do what you want?
    Code:
    (
    	clearListener()
    	for obj in geometry do
    	(
    		local files = for bm in getClassInstances bitmaptexture target:obj collect bm.filename
    		format "%: %\n" obj.name files
    	)
    )
    Dan Brew

    Comment


    • #3
      THANK YOU Daniel !!!
      Luke Szeflinski
      :: www.lukx.com cgi

      Comment


      • #4
        You're welcome.
        Dan Brew

        Comment

        Working...
        X