From who I've known that has this, they're all overweight. I can't urge enough how important it is to be within the proper weight range. So many problems happen to your body when you're overweight. The breathing machine should only be a temporary fix. The REAL fix is getting more active and healthy. Stop eating fast food,…
The following positions have been filled: (1) Technical Artist (1) 3D Weapons (1) 3D Vehicles (1) 3D Environments (1) Audio - Music Composer (1) Audio - Sound Effects (1) Animation - Cinematic We are still actively searching for: (1) Design - Graphics (1) Video - Editing & Effects We are always looking for passionate and…
You can get/set position only for verts, so you have to check the subobject level and convert edges/faces to verts and then get/set the position. To avoid if-loops try with "case of" statement: ( case subobjectlevel of ( 1: (vertPos = for v in (polyop.getVertSelection selection[1]) collect (polyop.getVert selection[1] v))…
well before I got your PM I already read this thread and r_feltch_r's comment ;) copypastepixel wrote a initial great script to export a OBJ file with some default modifications using binary hacks http://www.polycount.com/forum/showthread.php?t=71230 I used parts of his technique in TexTools for the…
I'm doing some freelance work and it involves rendering a product into different parts as layers. The layers are assembled as one product and uploaded into a website where the user can manipulate the layers with different materials colors etc., My contractor had a previous developer write scripts for the rendering process…
I'm excited to share news with the community that Wall Worm 7 is now out with a vast array of new features and tools for both Source 1 and Source 2. Among the new features is a new Asset Browser that replaces the older MDL browser and VMT browser. There's a lot more in the release. Read the Wall Worm 7 Release…
Well, I've been struggling alot with my weight again. Im the worst at staying with it. I think my only "saving grace" is that since my dad was recently diagnosed with diabetes, my mom has been cooking healthy at home. But I still managed to get myself up to 295. my all time heaviest. fack. Anyways, I made a thread about…
the way i do is: i created an autoexec.cfg file in my cfg folder inside i have alias "ssMode" "fullui"alias "fullui" "sv_cheats 1; dota_sf_hud_actionpanel 1; dota_sf_hud_channelbar 1; dota_sf_hud_chat 1; dota_sf_hud_inventory 1; dota_sf_hud_top 1; dota_hud_healthbars 1; dota_no_minimap 0; cl_drawhud 1;…
Not really no. Because they perform culling which determines what can be seen, so you have to balance batching and individually drawing each object. Like I said for a whole house it doesnt make sense, you will never see all of it. You are only batching static objects as well. So in an FPS online, you never usually see all…
try this (convex only though so concave would need to split into convex then recombined after being wrapped individually)... -- creates a ray point along the edge fn getEdgeRay msh edg =
( ze = edg - 1; a = (mod ze 3) + 1; b = mod a 3; fverts = getface msh (ze/3 + 1); v0 = getvert msh fverts[a]; v1 = getvert msh fverts[b +…