sporting吧 关注:15贴子:452

AE表达式小记

只看楼主收藏回复




IP属地:广东1楼2011-12-05 15:28回复
    Property attributes and methods
    对象相关属性的属性和方法
    value返回当前时间的属性值
    valueAtTime返回指定时间点得属性值
    velocity 返回空间属性的速率,与属性值同维度,如position的velocity为二维或三维向量
    此函数可用于连接对象的速率和诸如亮度,透明度等,达到速率变化相关亮度,透
    明度相应改变的效果
    velocityAtTime 返回指定时间点的空间属性速率值
    speed 返回空间属性的速度值,改函数永远返回一维值,也就是没有方向的速率
    speedAtTime 返回指定时间点空间属性的速度值
    wiggle(freq, amp, octaves=1, amp_mult=.5, t=time)
    返回数字或数列(取决于属性值的维度)
    相当于摇摆器效果,用表达式控制较摇摆器简捷,freq为频率,单位是X每秒
    amp为振幅,即摇摆变化的范围大小,octaves为振幅幅度,amp_mult为频率倍频
    t为持续时间
    temporalWiggle(freq, amp, octaves=1, amp_mult=.5, t=time)
    返回数字或数列(取决于属性值的维度),这是基于时间取样的的摇摆函数,也就是它摇摆当前时间点左右幅度,从当前时间点左右取样获得值,达到摇摆效果
    


    IP属地:广东2楼2011-12-05 16:04
    回复
      key(index) 返回顺序编号所指的关键帧
      如key(1).time返回第一个关键帧所在的时间点
      key(2).value返回第二个关键帧的属性值
      nearestKey(t) 返回与指定时间点最近的关键帧
      如nearestKey(1).value 返回距离一秒处最近的关键帧的属性值
      numKeys 返回关键帧的数目
      如果使用了分割尺寸分割position属性,那么关键帧数目会有不同,“不是简单相加,而是不同维度在同一时间点有关键帧,那么这些在同一时间点的关键帧算作1个关键帧”
      


      IP属地:广东4楼2011-12-05 16:33
      回复
        EE(大写),展开表达式属性快捷键


        IP属地:广东5楼2011-12-11 17:12
        回复
          \r 转行


          IP属地:广东6楼2011-12-11 17:48
          回复
            timeToFrames(t = time + thisComp.displayStartTime, fps = 1.0 / thisComp.frameDuration, isDuration = false)
            返回从开始到某时间点这时间段所包括的总帧数,返回值总为整数,isDuration = false向下取整,isDuration = true向上取整


            IP属地:广东7楼2011-12-14 11:47
            回复
              clamp(value, limit1, limit2)
              value取值在limit1和limit2之间则返回value值
              value取值比limit1小,则返回limit1的值
              value取值比limit大,则返回limit2的值
              这三个参数既可以是数字也可以是数列


              IP属地:广东8楼2011-12-14 12:31
              回复
                lookAt(fromPoint, atPoint)
                返回数列【3】,非常适用于摄像机和灯光的方向属性
                fromPoint连接本图层的位置,atpoint连接需要跟踪图层的位置,该函数自动算出角度赋予方向值


                IP属地:广东9楼2011-12-14 13:14
                回复
                  seedRandom(offset, timeless=false)
                  Return type: none.
                  返回类型:无
                  Argument type: offset is a Number, timeless is a Boolean.
                  参数类型:offset为数值,timeless为布尔运算逻辑值
                  The random and gaussRandom methods use a seed value that controls the sequence of numbers.
                  随机和高斯随机方法使用种子值控制数字的序列
                  By default, the seed is computed as a function of a unique layer identifier, the property within the layer, the current time, and an offset value of 0.
                  默认情况下,种子估算为一个唯一图层识别的函数,属性在图层忠,当前时间和offset的值为0
                  Call seedRandom to set the offset to something other than 0 to create a different random sequence.
                  调用seedRandom设置某物的偏移值大于0,此举能建立一个不同的随机数列
                  Use true for the timeless argument to not use the current time as input to the random seed.
                  timeless参数定义为true使得不使用当前时间作为随机种子的入点
                  Using true for the timeless argument allows you to generate a random number that doesn’t vary depending on the time of evaluation.
                  timeless参数定义为true允许你产生一个不是根据时间估算而不断变化的随机数
                  The offset value, but not the timeless value, is also used to control the initial value of the wiggle function.
                  offset的值,非timeless的值,同样用于控制wiggle函数的基值
                  For example, this expression on the Opacity property sets the Opacity value to a random value that does not vary with time:
                  举例:这个赋予透明度属性的表达式设置一个不随时间变化的随机透明值
                  【 seedRandom(123456, true);
                  random()*100】
                  The multiplication by 100 in this example converts the value in the range 0–1 returned by the random method into a number in the range 0–100; this range is more typically useful for the Opacity property, which has values from 0% to 100%.
                  这个例子中乘以一百是用来转化随机值从0~1的范围到0~100范围;0~100这个范围用于透明度属性更具代表性。


                  IP属地:广东10楼2011-12-14 14:51
                  回复
                    Layer Space Transforms methods (expression reference)
                    图层空间变换方法
                    Use layer space transform methods to transform values from one space to another, such as from layer space to world space.
                    使用图层空间变换方法来变换一个空间值为另一个空间值,如同变换图层空间到世界空间
                    The “from” methods transform values from layer space to the named space (composition or world).
                    “from”方法变换图层空间到所命名的空间(合成空间或世界空间)
                    The “to” methods transform values from the named space (composition or world) to layer space.
                    “to”方法变换所命名的空间(合成空间或世界空间)到图层空间
                    Each transform method takes an optional argument to determine the time at which the transform is computed; however, you can almost always use the current (default) time.
                    每一个变换方法使用一个可选参数来决定哪个时间点的值用来转换计算,尽管如此,你也可以总使用当前时间(默认设置)。
                    Use “Vec” transform methods when transforming a direction vector, such as the difference between two position values.
                    当变换一个具方向的向量时,使用“Vec”变化方法,如两个“position”之间的差值
                    Use the plain (non-”Vec”) transform methods when transforming a point, such as position.
                    当需变换一个点时使用简易变换方法(不用“Vec”),如“position”
                    Composition (comp) and world space are the same for 2D layers.
                    合成空间和世界空间在2D图层里是一致的
                    For 3D layers, however, composition space is relative to the active camera, and world space is independent of the camera.
                    而在3D图层中,合成空间与活动摄像机有关,世界空间是独立于摄像机存在的
                    toComp(point, t=time)
                    返回类型: Array [2 or 3].
                    参数类型: point is an Array [2 or 3], and t is a Number.
                    Transforms a point from layer space to composition space.
                    fromComp(point, t=time)
                    Return type: Array [2 or 3].
                    Argument type: point is an Array [2 or 3], and t is a Number.
                    Transforms a point from composition space to layer space.
                    The resulting point in a 3D layer may have a nonzero value even though it is in layer space.
                    Example: fromComp(thisComp.layer(2).position)
                    toWorld(point, t=time)
                    Return type: Array [2 or 3].
                    Argument type: point is an Array [2 or 3], and t is a Number.
                    Transforms a point from layer space to view-independent world space. Example: toWorld.effect("Bulge")("Bulge Center")
                    Dan Ebberts provides an expression on his MotionScript website that uses the toWorld method to auto-orient a layer along only one axis. This is useful, for example, for having characters turn from side to side to follow the camera while remaining upright.Carl Larsen provides a pair of video tutorials on the Creative COW website in which he explains the basics of parenting and then uses an expression involving the toWorld method to trace the path of an animated child layer:
                    part 1
                    part 2
                    Rich Young provides a set of expressions on his AE Portal website that use the toWorld method link a camera and light to a layer with the CC Sphere effect.fromWorld(point, t=time)
                    Return type: Array [2 or 3].
                    Argument type: point is an Array [2 or 3], and t is a Number.
                    Transforms a point from world space to layer space. Example:fromWorld(thisComp.layer(2).position)
                    See Expression example: Create a bulge between two layers for an example of how this method can be used.toCompVec(vec, t=time)
                    Return type: Array [2 or 3].
                    Argument type: vec is an Array [2 or 3], and t is a Number.
                    Transforms a vector from layer space to composition space. Example: toCompVec([1,0])fromCompVec(vec, t=time)
                    Return type: Array [2 or 3].
                    Argument type: vec is an Array [2 or 3], and t is a Number.
                    Transforms a vector from composition space to layer space. Example (2D layer): dir=sub(position, thisComp.layer(2).position); fromCompVec(dir)toWorldVec(vec, t=time)
                    Return type: Array [2 or 3].
                    Argument type: vec is an Array [2 or 3], and t is a Number.Transforms a vector from layer space to world space. Example: p1 = effect("Eye Bulge 1")("Bulge Center"); p2 = effect("Eye Bulge 2")("Bulge Center"); toWorld(sub(p1, p2))fromWorldVec(vec, t=time)
                    Return type: Array [2 or 3].
                    Argument type: vec is an Array [2 or 3], and t is a Number.
                    Transforms a vector from world space to layer space. Example:fromWorld(thisComp.layer(2).position)fromCompToSurface(point, t=time)
                    Return type: Array [2].
                    Argument type: point is an Array [2 or 3], and t is a Number.
                    Projects a point located in composition space to a point on the surface of the layer (zero z-value) at the location where it appears when viewed from the active camera. This method is useful for setting effect control points. Use with 3D layers only.


                    IP属地:广东11楼2011-12-16 17:24
                    回复
                      Key attributes and methods (expression reference)
                      关键帧属性和方法(表达式参考)
                      When you access a Key object, you can get time, index, and value properties from it. For example, the following expression gives you the value of the third Position keyframe: position.key(3).value.
                      当你读取一个关键帧对象时,你可以获取它的time,index,和value属性值。例如,以下的表达式将给出第三个关键帧的值。
                      The following expression, when written on an Opacity property with keyframes, ignores the keyframe values and uses only the placement of the keyframes in time to determine where a flash should occur:
                      以下表达式,当这个表达式以关键帧的形式写入opacity的属性时,将忽视关键帧的值,只使用关键帧的时间点值来决定什么时候产生闪光
                      d = Math.abs(time - nearestKey(time).time);
                      easeOut(d, 0, .1, 100, 0)
                      value
                      Return type: Number or Array. Returns the value of the keyframe.
                      返回类型:数字或数列。返回关键帧的属性值
                      time
                      Return type: Number. Returns the time of the keyframe.
                      返回类型:数字,返回关键帧的时间点,单位秒
                      index
                      Return type: Number. Returns the index of the keyframe.
                      返回类型:数字,返回关键帧的序号
                      


                      IP属地:广东13楼2011-12-16 22:03
                      回复
                        Mask attributes and methods (expression reference)
                        遮罩属性和方法(表达式参考)
                        Note: You can link Mask Path properties to other path properties (paths in a shape layer and brush strokes), but the properties are not accessible for direct numerical manipulation through expressions.
                        注意:你可以连接遮罩的路径属性和另一个路径属性(路径形状图层和描边),但属性不可通过表达式直接读取数字操作
                        maskOpacity 遮罩不透明度
                        Return type: Property.
                        返回类型:属性
                        Returns the opacity value of a mask as a percentage.
                        返回遮罩不透明度属性的百分比属性值
                        maskFeather
                        遮罩羽化
                        Return type: Property.
                        返回类型:属性
                        Returns the feather value of a mask, in pixels.
                        返回遮罩的羽化值,单位像素
                        maskExpansion 遮罩扩展
                        Return type: Property.
                        返回类型:属性
                        Returns the expansion value of a mask, in pixels.
                        返回遮罩的扩展值,单位像素
                        invert 反向
                        Return type: Boolean.
                        返回类型:布尔逻辑值
                        Returns true if the mask is inverted or false if it is not.
                        返回真如果遮罩是反向的,反之则返回假
                        


                        IP属地:广东15楼2011-12-17 00:59
                        回复
                          Effect attributes and methods (expression reference)
                          特效属性和方法(表达式参考)
                          active 活动的
                          Return type: Boolean.
                          返回类型:布尔逻辑值
                          Returns true if the effect is turned on (the Effect switch is selected).
                          返回真如果特效是开启的。反之则返回假
                          param(name) 参数(名称)
                          Return type: Property.
                          返回类型:属性
                          Argument type: name is a String.
                          参数类型:name为一个字符串
                          Returns a property within an effect. Effect control points are always in layer space.
                          返回特效中属性的属性值,特效控制点永远都位于图层空间中,言外之意需要转化为合成空间或世界空间
                          Example: effect("Bulge").param("Bulge Height")
                          param(index) 参数(序列)
                          Return type: Property.
                          返回类型:属性
                          Argument type: index is a Number.
                          参数类型:index为一个数字
                          Returns a property within an effect. Effect control points are always in layer space.
                          返回特效中按顺序排列的一个属性
                          For example, effect("Bulge").param(4) returns the Bulge Height property.


                          IP属地:广东16楼2011-12-17 01:04
                          回复
                            要是自己写的,牛逼人。要是你也能像我一样看懂,也是牛逼一个


                            IP属地:陕西17楼2012-05-15 13:35
                            回复
                              非常感谢


                              IP属地:湖南18楼2012-08-09 18:49
                              回复