Jump to content

redstone

Former Developer
  • Content Count

    49
  • Joined

  • Last visited

  • Medals

Everything posted by redstone

  1. redstone

    How to create a TARMAC? HELP

    Just tesselate object at least to have eg. 4 faces, select all and then navigate to Points -> Properties and switch surface from normal to On surface..
  2. redstone

    Geomtry Phys LOD bugs when i hit it

    It just takes a damage, so solution is to add named property into geometry lod "Damage = no"
  3. redstone

    LOD's for static object

    I can recommend (depends on using of this object) to do them same like eg. our pavements... To do: * No collision geometry (will not be obstacle for AI if it's placed in map - not in mission) * Physx geometry * View geometry * Roadway
  4. I am not sure about light rays (images not found), but for AO visible through model you can use same thing - https://forums.bistudio.com/topic/193081-transparent-texture-with-glass-capaa/?p=3072819 BTW using proxy can solve problem with AO too, but in general proxies are not a good way for a massive use. For light rays and the sun, there can be some problems with view-geometry.
  5. redstone

    Transparent Texture with Glass_ca.paa

    That's problem with alpha/non-alpha space in UV. Engine thinks, that your model is fully alpha based, it's calculated in different way. To solve this, you can add named property in geometry lod: Forcenotalpha=1
  6. redstone

    the size of ponds

    Maximum size of object should be 50x50m. You can also use snapping function in terrain builder (also needs some tweaks in p3d model)
  7. According to the second picture, you haven't roadway lod to walk on it. Everything is walking on roadway lod.
  8. redstone

    Satalite image resolution?

    Sat texture on Altis is 30720px. Best is to keep resolution close to 1px/m, but it depends...
  9. redstone

    Poly Count

    "not mapped" section is not so big problem. Sections in model also contains sections from proxy objects: Base model with 3 sections and 2 proxies Proxy #1 has 2 sections Proxy #2 has 1 section = Model has 6 sections It's little bit more complicated, but it's not important now. Proxies are counted in different (special) way. That's also the reason why we cannot use proxies to avoid limit 20000 tris. on all models. It's not good for performance.
  10. redstone

    Poly Count

    I can confirm this... I think in marksmen dlc are really nice weapons and polycount is low, but effectively used. That's what is the most important in game assets. You don't have to spend many polygons to get very nice result. Eg. my favourite DMR_06 has 10 000 in view and 6700 in 1st resolution lod. Or DMR_03 9000 in view-lod and 6000 in 1st resol. lod. Both weapons has also only 3 sections (2 textures with rvmats and "not mapped" one)
  11. In this optic model were used bad material. That material doesn't contain nozwrite flag. To avoid problems with alpha sorting we have to use in material this: renderFlags[]={"NoZWrite"}; It's not solution for all alpha sorting problems, but sometimes this can help.
  12. Sorry I am late. Yes, just use that procedural colour instead of any texture on model. Or use any _ca texture.
  13. redstone

    ARMA3 standard ladder dimensions..?

    Hi there, tomorrow I'll investigate, if we can add this to arma tools samples.
  14. redstone

    Help me understand convexities please

    I think you can remove them, or move a little as on the picture -
  15. Hi, there's no problem. When you plan to use _CA texture as hiddenSelectionsTexture, the model have to prepared for that. On model has to be alpha channel texture eg. #(argb,8,8,3)color(0,0,0,0,CA) (invisible), then engine knows, that this object contains alpha. So try to add that procedural colour into Ghost.p3d and then try to apply any _CA hiddenSelectionsTexture.
  16. You can try to add this in material: maybe it can help. renderFlags[]= { "NoZWrite", }; Also check UV and texture, if there is some alpha space around edges. You have to copy-paste and reverse faces.
  17. Fire and view geometry should work, but with physX geometry it's also better to use components in "main" model. About a machine you have there. For metal materials it's better to use only the supershader material, because in multimaterial is only one setting for specular and no environment map definiton. You have to differ AI and players. Players colliding with geometries in "main" model, so the in geometry you can just extract proxy in this lod and find components to re-numbered the new one. AI don't collide with geometries. AI in building use the path lod, which defines some "track", what they use for going on it.
  18. I can recommend proxy also, but keep in mind, that in geometry lod, there should be component, because proxy is non-functional in geometry lod.
  19. Hi, now I have only czech unofficial version of some description about buildings ("Building step by step tutorial") I hope, that there will be someone, who will have some time for translation to english... But you can try take parts of the path lod in our sample models for now... Arma 3 Tools\Samples_F\Test_House_01\Test_House_01_F.p3d
  20. You have to seperate parts to be convex in geometries. You can check it there: https://dl.dropboxusercontent.com/u/129498485/Arma/small_woodbridge.p3d
  21. redstone

    Texturing the HEMTT's Box

    Hi, model has proxy and camo selections are not functional on proxies... But the is structures_f_data.pbo and texture metal\containers\containers_02_set_co.paa
  22. Hi, penetrability, sounds and other things are based on rvmats used in Fire/View geometry... My opinion is that, multimaterials are better for the buildings becose you can use more tiled textures (better texel) and you can be blend them.
  23. redstone

    Reflector lights reflecting off

    Then it's hard to say without data...
  24. redstone

    Problem with transparent magazine

    You have to sort it in oxygen. * Just select all alpha faces and press CTRL + SHIFT + HOME or hit faces->Move top. * Then select all solid faces and press CTRL + SHIFT + END or hit faces->Move bottom. * When they are alpha faces in magazine, just sort them by using CTRL + SHIFT + PAGEUP or PAGEDOWN.
  25. redstone

    Error with animation

    IK anim is based on selection in all lods. Eg. you have selection drivewheel for IK defined. You have the drivewheel in resol lods 1,2 and in shadow 0. When you have drivewheel mesh twice bigger or on bad place, the IK hand anim break in the way you posted.
×