Home Technical Talk

deleting particle view

polycounter lvl 18
Offline / Send Message
dejawolf polycounter lvl 18
particle view shows up in files i export from 3ds max, and gets imported when i xref objects,
but i can't delete it.
i've tried selecting it through maxscript, but no luck.
and delete doesn't work either.
it just tells me "error loading particle view" then opens it anyways.

Replies

  • dejawolf
    Options
    Offline / Send Message
    dejawolf polycounter lvl 18
    oh wait. clever. had to write:
    delete $'btn_particle_view_01'
  • KikiAlex
    Options
    Offline / Send Message
    macroScript Delete_particle_flow
    	category:"Alex_tools"
    	toolTip:""
    (
    	fn curata_pflow =
    
    	(
    		clase_de_particula = #(Particle_View,PFEngine,PF_Source,RenderParticles,Event,Birth,DisplayParticles,ParticleGroup,Event,Birth_Script,ParticleGroup,DeleteParticles,Force,Keep_Apart,mapping,Material_Dynamic,Material_Frequency,Material_Static,Position_Icon,Position_Object,rotation,ScaleParticles,Script_Operator,ShapeStandard,Shape_Facing,Shape_Instance,Shape_Mark,speed,SpeedByIcon,Speed_By_Surface,spin,Age_Test,Collision,Collision_Spawn,Find_Target,Go_To_Rotation,Scale_Test,Script_Test,Send_Out,Spawn,Speed_Test,Split_Amount,Split_Selected,Split_Source,Cache,Notes,Render,Birth)
    		
    		for i in objects do 
    			(
    				if ((findItem clase_de_particula (classof i)) != 0) do
    					(
    					delete i
    					)
    			)
    	)
    
    
    	curata_pflow()
    )
    
  • olmstead007
    Options
    Offline / Send Message
    Creating scene, create box. Merge scene(Box) with your bloated scene, uncheck everything except Geometry. Merge done, delete Box. Save
Sign In or Register to comment.