• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Expression für: Rotation verfolgt die Position einer anderen 2D Ebene

Community Beginner ,
Jul 10, 2015 Jul 10, 2015

Copy link to clipboard

Copied

Hallo AE-Freunde,

Ich wollte nur ein "schnelles" script finden um die Rotation einer Ebene (ein Pfeil z.B.) an die Bewegung (Position des Ankerpunktes) einer anderen Ebene automatisch anzupassen.

Die zu verfolgende Ebene ist allerdings zu dem einem Nullobjekt untergeordnet, was für die Expression sicher relevant sein dürfte.

Ich dachte das wäre simpel und habe jetzt alles mögliche durchforstet, aber nichts adäquates gefunden.

Wie gesagt, kann ich mir vorstellen, das es eines der ältesten und simpelsten Fragen sein dürfte,

aber nach 2 Stunden Recherche, keinen Erfolg gehabt und zum selber scripten reicht bei mir leider noch nicht.

Viele Grüße an da Draussen D Vielleicht kann mir jemand helfen?

TOPICS
Expressions

Views

649

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Jul 10, 2015 Jul 10, 2015

mTarget=thisComp.layer("Target");

mPoint=mTarget.toComp(mTarget.anchorPoint);

mDiffX=position[0]-mPoint[0];

mDiffY=position[1]-mPoint[1];

mRad=Math.atan2(mDiffY,mDiffX);

mDeg=radiansToDegrees(mRad);

[mDeg]

Mylenium

Votes

Translate

Translate
LEGEND ,
Jul 10, 2015 Jul 10, 2015

Copy link to clipboard

Copied

mTarget=thisComp.layer("Target");

mPoint=mTarget.toComp(mTarget.anchorPoint);

mDiffX=position[0]-mPoint[0];

mDiffY=position[1]-mPoint[1];

mRad=Math.atan2(mDiffY,mDiffX);

mDeg=radiansToDegrees(mRad);

[mDeg]

Mylenium

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 10, 2015 Jul 10, 2015

Copy link to clipboard

Copied

Hey Mylenium, Super vielen lieben Dank!  Klappt 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 10, 2015 Jul 10, 2015

Copy link to clipboard

Copied

LATEST

In iExpressions gibt es dafür auch die

Look At Point 2D Expression | mamoworld

look_at_point2d_preview.jpg?itok=_O6MP-kQ

Falls du das gleiche mal in 3D brauchst oder eine Linie statt einen Punk anschauen willst, hat iExpressions dafür auch Lösungen:

Look At Point 3D Expression | mamoworld

look_at_point3d_preview.jpg?itok=FVNofqf9

Look At Line 2D Expression | mamoworld

look_at_line2d_preview.jpg?itok=QqWwyzrt

Look At Line 3D Expression | mamoworld

look_at_line3d_preview.jpg?itok=1guA7gDF

Mathias Möhl - Developer of tools like BeatEdit and Automation Blocks for Premiere Pro and After Effects

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines