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…
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…
Hey :) I'm working with a non square texture ( for some reasons, I have my trim + decals on 1 texture 2048*4096 ) However, each time I want to place a strip on my trim, I have to go in the modifier Unwrap UVW > select my texture in the list > go to the Options > specify 2048 * 4096 Is there a way to be faster ? Is there an…
We just had the very same discussion over at gameartist.net (UE3 Texture Quality ), so I just copy my take on this: " When you assign your textures in UE3 you will see the uncompressed, unclamped original texture displayed in the editor. Once you save the texture it gets compressed so when you reopen the scene the new,…
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 +…
I wanted to look into using struct, since I still have a global and two I wanted to remove, but haven't got around it yet. Here is an example script of what I'm trying to do. The problem I have right now is that the two first objects will be placed correctly in relation to each another, but the ones afterwards don't (the…