livellosegreto.it is one of the many independent Mastodon servers you can use to participate in the fediverse.
Livello Segreto è il social etico che ha rispetto di te e del tuo tempo.

Administered by:

Server stats:

1.2K
active users

#motiongraphic

0 posts0 participants0 posts today
Continued thread

Text :

- Importing a file lets the user modify the resulting layer. No link with the original file will be kept. The resulting layer will not be associated with an Asset (external file representation in Friction).
- Linking file allows the user to keep the link with external file : if a modification happens, it will be reflected in Friction once the Asset is reloaded. The resulting layer will not be editable in Friction.

Friction Quick Tip #13 - Import/Link external files

Friction allows user to use external resources (as svg). There are 2 very different ways of using them, Import an Link.

Do you know @friction ? It is an awesome open source 2d animation software, early stage, which could replace #aftereffect

Unofficial discord discord.gg/FkjnM2r2JD
Official page friction.graphics/

#adobe #noadobe #foss #motiongraphic #motiondesign #2danimation #animation #opensource
#alternative #friction2d

Continued thread

Text :
- Select **two Path Layers**
- In the **topbar menu**, in **Path** category, select an operation
- You can use **Union, Difference, Intersection, Exclusion, Division** operations
- You can also **Combine** or **Break Apart** to combine **separate Path Layers into one**, or **break a Path Layer with multiple Paths into separate Layers**

Friction Quick Tip #12 - Path Operations

In Friction, you can combine different path through path operations. They are also known as boolean operations.

Do you know @friction ? It is an awesome open source 2d animation software, early stage, which could replace #aftereffect

Unofficial discord discord.gg/FkjnM2r2JD
Official page friction.graphics/

#adobe #noadobe #foss #motiongraphic #motiondesign #2danimation #animation #opensource
#alternative #friction2d

Continued thread

Text 1/2 :

This is similar to pre composition or nested composition in after effect

- Create two different scenes (let's call the final one "parent" and the other "child")
- In the parent scene, right click in the viewport and use theLink Scene button
- The child animation is now in the parent scene, and acts as a classic video layer. You can toggle its Visibility Range to move animation in time

Friction Quick Tip #11 - Link (nested) Scene

Friction allows user to link a scene (composition) in another scene. This simplifies the use of pre made animation in a complex scene.

Do you know @friction ? It is an awesome open source 2d animation software, early stage, which could replace #aftereffect

Unofficial discord discord.gg/FkjnM2r2JD
Official page friction.graphics/

#adobe #noadobe #foss #motiongraphic #motiondesign #2danimation #animation #opensource
#alternative #friction2d

Continued thread

Text :

- In the right click menu of a layer, you can toggle visibility range to activate it. The color block represents the frames of visibility for the layer.
- This color block can be adjusted (trim and drag) to set this range. Keyframes would be moved accordingly.

Continued thread

Text 2/2 :
- To prevent that, you can use $value to get the user-defined value of the property, and add it to the parent's property in the Calculate section
NamedVariable = ParentName.transform.translation.x
CurrentValue = $value
return NamedVariable + CurrentValue
- Do it for both axis if needed, you should be able to control the child's property while it is still copying parent's property

Continued thread

Text 1/2 :
- Set expression for child's property (translation for the example)
- In Bindings section, get the parent property as a variable
NamedVariable = ParentName.transform.translation.x
- Return this variable in the Calculate section to use it as the new value
return NamedVariable
- Repeat that with both axis if needed
- Child's property is now the same as the parent's, but it cannot be changed by the user anymore