MoonDoggie
@moondoggie
New Member
Joined: Feb 15, 2024
Topics: 22 / Replies: 242
Topic
Forum
Replies: 1
Views: 10
Reply
RE: I used to like arrays, then I met maxscript..

some examples: myarray = #() — initialization myarray = #(13.0,14.0,15.0,16.0,16.5) print myarray[1] 13.0 print myarray[3] 15.0 for i in my…

18 years ago
Forum
Topic
Forum
Replies: 1
Views: 11
Reply
RE: apply new diffusemap to every object

currentlySelected = getCurrentSelection() for obj in currentlySelected do ( try ( showTextureMap obj.material obj.material.diffuseMap on ) catch…

18 years ago
Forum
Reply
RE: apply new diffusemap to every object

check out the showinviewport function used like this objs = getCurrentSelection() for o in objs do ( try showInViewport o.material o.mat…

18 years ago
Forum
Reply
RE: Searchable Combo Box

if you make it a multilistbox then you can select multiple things -Colin

18 years ago
Forum
Reply
RE: Max 9 bug check please…

( clearlistener() FSM_Connected_Manager.Disconnect() FSM_Connected_Manager = netrender.getmanager() ManagerPresent = FSM_Connected_Manager.connect #m…

18 years ago
Forum
Reply
RE: Global Variable Declaration

I have no problems evaulating and printing the value of sak_INIfile after this is initialized on my 32bit max9.

18 years ago
Forum
Reply
RE: Theory Questions

bmaps = getClassInstances BitmapTexture for b in bmaps do ( — do something to the scene’s bitmaps ) Thanks for digging up those links Geor…

18 years ago
Forum
Topic
18 years ago
Forum
Replies: 4
Views: 13
Reply
RE: Bitmap Remover from Viweport..( possible to create? )

I’m confused, you want a script that turns off ShowInViewport for all the bitmaps seen in the viewport? I don’t think that’s what you are referring t…

18 years ago
Forum
Reply
RE: Pick Railing Path

What’s a railing path? And what exactly are you trying to do?

18 years ago
Forum
Reply
RE: Find if Bitmap is used by a scene object

Good to hear, getclassinstances helps because bitmaps can appear in displacement maps, projection maps etc. Glad it helped. -Colin

18 years ago
Forum
Reply
RE: Find if Bitmap is used by a scene object

there is an easier way bmaps = getClassInstances BitmapTexture for b in bmaps do ( local thefile = filenameFromPath b.filename if thefile == …

18 years ago
Forum
Reply
RE: Is it possible to copy a view to an other ?

coping the camera itself will copy the FOV, and switching back to Perspective will NOT change the FOV of the camera it was just in.

18 years ago
Forum
Page 16 / 18