Model Quality issues

Ask a Question related to Macromedia Director 3D, Design and Development.

  1. #1

    Default Model Quality issues

    I'm exporting models to w3d from 3dsmax6 and for the most part all goes well.
    However, a few models end up with missing faces. If I crank up the geometry
    level on export, the problem only gets worse. But the preview before exporting
    looks PERFECT.
    I've disabled LOD for the object, and verified that there isn't a texture
    transparency problem. The polycount is roughly 1500-2500. I vaguely remember
    someone in a post saying that if you have objects overlapping each other , it
    can cause weird problems like this.

    My question is...does anyone have any more info about this? Any other possible
    ideas? Any help would be very much appreciated, as this has slowed down a
    project of mine tremendously.

    Thanks!

    Skavengur Guest

  2. Similar Questions and Discussions

    1. New release of Config::Model with fstab model example
      Hello I'm happy to announce the new release of the Config::Model perl module (v0.506) . This release features a Fstab example with its fstab...
    2. Quality issues with conversion
      I'm currently working for someone who is upgrading from using Pagemaker 6.5 (in Classic) to IDCS2 (in 10.4.3) and has quite a few files to convert....
    3. model showing in 3d editor but not in castmember model list
      Hi all, Ok this is a little odd... I have 3d cast member from which I'm clonefromcastmember-ing a model. One of this model's children is...
    4. Problem picking model under another model
      Im using the following code to create a list of the 1st 2 models under the mouse which I can use in an if statement. example: on mouseDown me pt =...
    5. Model within model transform.position, intersection, overlapping models
      Ok, I have a large sphere, and within that sphere a sun with rays. The sun object is the parent object while each individual ray is a child object. ...
  3. #2

    Default Re: Model Quality issues

    i never used 3Dsmax, but maybe you should check the directions of all normals.
    if some of them are reversed, they are only visible from one side.

    try to check this in director by making all models visible from both sides.

    repeat with i= 1 to member("my3Dworld").models.count
    member("my3Dworld").model<i>.visibility=#both
    end repeat

    if your models look now correct, go back to 3dsmax and make all normals look
    into the correct direction. maybe you have in max someting like
    backfaceculling for the preview-window.

    if this is not working, maybe some max user can tell you a solution...

    regards!

    hondo3000 Guest

  4. #3

    Default Re: Model Quality issues

    Hondo.....as usually you've come through. I though I had tried unifying the
    normals within 3dsmax....but must have failed somewhere. Using a
    visibility=#both with lingo causes the models to be complete.

    You've totally made my day. Thanks so much for the help!

    Skavengur Guest

  5. #4

    Default Re: Model Quality issues

    the good thing is that you know your models are complete, the bad thing about
    visibility=#both is that it leads into bad performance.

    i made this little screencapture some time ago to show how to flip normals in
    cinema4D.
    <a target=_blank class=ftalternatingbarlinklarge
    href="http://kisd.de/~lutz/crap/reverse_normals.mov">[url]http://kisd.de/~lutz/crap/r[/url]
    everse_normals.mov</a>

    and i think there must be something in 3Dsmax that displays the normals so you
    can detect them. another problem with some normals showing into the wrong
    direction is, that you get problems with "phong" shading.

    so better controll all normals before you export. using " visiblility=#both"
    will take you the half performance away because now the double number of
    polygons have to be rendered, even if they are not visible.

    cheers!

    hondo3000 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139