Home Technical Talk

Speeeeed Tree

making some smaller plants human heightish, like huckleberry plants stuff like that, and i have my custom meshes/ materials for the branches and i want to use their stalk roots, but im having difficultly with pivot points of my mesh to align to the stalks(i have the custom meshes pivot set to the orgin in max), it seems speed tree randomly off sets the pivot of the mesh and pushes it off of the root and makes it look disjointed, i assume for better coverage, but i dont want that, ive been messing with the settings, and need some help.

is there anyone here who is skilled with speedtree to help me out or turn me to the right direction?

Replies

  • sama.van
    Offline / Send Message
    sama.van polycounter lvl 17
    I am sorry I cannot help you since I work under Maya...

    But I recently started Python under Maya and it could help you too.

    Note the following script should work under 3dsmax because using Python function only.

    def SAMA_HelpPeopleforSynthax (mess):
    	buffer = mess.split(", ", mess.count(", "))
    	
            for i in range(0, len(buffer), 1):
    		buffer[i] = buffer[i].replace("stuff like that",  "", 5)
    		buffer[i] = buffer[i].replace("and ", "", 5)
    		buffer[i] = buffer[i].capitalize()
    		buffer[i] += "."
    		i +=1
    	
    
    	buffer.insert(0, "Hello,n")
    	buffer.append("nReally thank you for your help.")
    
    	newSynthax = "n".join(buffer)
    
    	return newSynthax;
    
    mess = "making some smaller plants human heightish, like huckleberry plants stuff like that, and i have my custom meshes/ materials for the branches and i want to use their stalk roots, but im having difficultly with pivot points of my mesh to align to the stalks(i have the custom meshes pivot set to the orgin in max), it seems speed tree randomly off sets the pivot of the mesh and pushes it off of the root and makes it look disjointed, i assume for better coverage, but i dont want that, ive been messing with the settings, and need some help."
    
    print SAMA_HelpPeopleforSynthax(mess)
    

    Hello,

    Making some smaller plants human heightish.
    Like huckleberry plants .
    I have my custom meshes/ materials for the branches i want to use their stalk roots.
    But im having difficultly with pivot points of my mesh to align to the stalks(i have the custom meshes pivot set to the orgin in max).
    It seems speed tree randomly off sets the pivot of the mesh pushes it off of the root makes it look disjointed.
    I assume for better coverage.
    But i dont want that.
    Ive been messing with the settings.
    Need some help..

    Really thank you for your help.
  • yiannisk
    Offline / Send Message
    yiannisk polycounter lvl 14
    are you trying to make bushes? and what version of speedtree are you using ?
  • Daniel Doerksen
    im using version 5.0.1

    i figure it would be best to show you what i mean with disjointed

    i create the mesh in max to use as leaves then export usig the script speedtree comes with,

    disjointed.jpg
Sign In or Register to comment.