Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. //Snowman.bvr\n\n\n//Base\n\nb = sphere\nb.position =0,0,0\nb.scale = 2,2,2\n\n//Base Button\nbb = sphere\nbb.position = 0,-1,0\nbb.scale = .2,.2,.2\nbb.color = black\n\n\n// Middle Button\nmb = sphere\nmb.position = 0,-.9,.5\nmb.scale = .2,.2,.2\nmb.color = black\n\n//Middle\nm = sphere\nm.position =0,0,1\nm.scale = 1.5,1.5,1.5\n\n//Top Button \ntb = sphere\ntb.position = 0,-.8,1\ntb.scale = .2,.2,.2\ntb.color = black\n\n//Top\nt = sphere\nt.position = 0,0,2\n\n//Left eye\nle = sphere\nle.position = -.2,-.5,2.2\nle.scale = .15,.15,.15\nle.color = black\n\n//Right eye\nre = sphere\nre.position = .2,-.5,2.2\nre.scale = .15,.15,.15\nre.color = black\n\n// Carrot \nc = parametricCurve\nc.setMinMax = t,0,.7\nc.setEquation = x,(0)\nc.setEquation = y,(-t)\nc.setEquation = z,(2t)\nc.setThickness = .1\nc.setSegmentCount = 10\nc.color = 255,140,0\nc.spawn\n\n//Hat,base\nh = plane\nh.position = 0,0,2.43\nh.color = black\nh.scale = .1,.1,.1\n\n//Hat, top\nht = parametricCurve\nht.setMinMax = t, 0,3\nht.setEquation = x,(0)\nht.setEquation = y,(0)\nht.setEquation = z,(t)\nht.setThickness = .5\nht.setSegmentCount = 8\nht.color = black\nht.spawn\n\n//Text\ntxt=text\ntxt.text=Snowman\ntxt.color=green\ntxt.position=0,0,4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement