to many rotating objects

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

  1. #1

    Default to many rotating objects

    Hy guys. I have 24 objects that i want to rotate on their selfs. i used
    member('models').model('m1').rotate(0, 5, 0,#self) if i try to rotate more that
    6 objects with the same command or the with repeat i get an error: it
    says:'script error:Object expected Can somebody help me? What can i do?

    DANGH_b Guest

  2. Similar Questions and Discussions

    1. Problem rotating 3D objects...
      Some of my 3D objects don't rotate properly...is there any way to set a pivot-point for a 3D object? I've made a simple 3D tank, and all I want...
    2. Newbie Question? Aligning Objects to other Objects?
      Hi, I think this a newbie question and I will try to explain it as best as possible! I have a hollow circle (no fill, or stroke) and x amount of...
    3. Rotating
      how do I rotate a primitive/model without rotating it's own axis system. example - When creating a cone, it is created with it's sharp end pointing...
    4. Storing Objects/Arrays in Stored Objects
      Hello All, I recently came across a very frustrating issue when trying to create and store arrays within objects in a Shared object. It took me...
    5. Rotating Phrase Box
      I'm trying to make an animation that rotates phrases every five minutes or so. Is a flash animation the way to go? Any suggestions?
  3. #2

    Default Re: to many rotating objects

    i think your problem is not the rotating of the models, you adressed a model
    that is not available. may be you should check if the model exists before you
    try to rotate it.

    if world.model("box01") then
    world.model("box01").rotate(vector(1,1,1),#self)
    end if

    (this is not tested may be it is not working but i think you should think in
    this way...)




    hondo3000 Guest

  4. #3

    Default Re: to many rotating objects

    Yes you are right.I found out that a model didn`t exist.
    thank you for answering me
    DANGH_b 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