Difference between revisions of "Parameter"

From Synfig Studio :: Documentation
Jump to: navigation, search
m (Page info + category paramters)
m ({{Title|Parameter}} + see also section)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<!-- Page info -->
 
<!-- Page info -->
 +
{{Title|Parameter}}
 
{{Category|Parameters}}
 
{{Category|Parameters}}
 
{{NewTerminology}}
 
{{NewTerminology}}
 
<!-- Page info end -->
 
<!-- Page info end -->
 
+
'''Parameters''' are properties a {{l|Layer|layer}} may have, such as {{l|Blend Method Parameter|Blend Method}}, or for a {{l|Circle_Layer|circle}} its radius.
Parameters are properties a {{l|Layer|layer}} may have, such as {{l|Blend Method}}, or for a {{l|Circle_Layer|circle}} its radius.
+
  
 
Every parameter has a {{l|Dev:Types|type}} - a circle's radius is a Real number, its color is a Color, and so on.  Synfig Studio won't let you set its radius to Red, or its color to 5.7, because it knows what type each parameter is supposed to be.
 
Every parameter has a {{l|Dev:Types|type}} - a circle's radius is a Real number, its color is a Color, and so on.  Synfig Studio won't let you set its radius to Red, or its color to 5.7, because it knows what type each parameter is supposed to be.
  
In Synfig, the values of parameters can be changed, either by directly manipulating the item on the canvas, or by using the {{l|Parameters Dialog}} window to alter the values by typing them in directly.
+
In Synfig, the values of parameters can be changed, either by directly manipulating the item on the canvas, or by using the {{l|Parameters Panel}} window to alter the values by typing them in directly.
 +
 
 +
Some parameters can be defined has {{l|Static_Parameters|statics}} : they will not accept changes over the time.
  
 
Parameter values are {{l|ValueNode|ValueNodes}}.  This basically means that their value can be animated over time.  They can be simple:
 
Parameter values are {{l|ValueNode|ValueNodes}}.  This basically means that their value can be animated over time.  They can be simple:
Line 19: Line 21:
  
 
This complete description is achieved by the use of {{l|waypoints}}, which are associated with each ValueNode.
 
This complete description is achieved by the use of {{l|waypoints}}, which are associated with each ValueNode.
 +
 +
===See also===
 +
* {{l|Convert}}
 +
* {{l|Linking}}

Latest revision as of 08:35, 22 October 2015

Parameters are properties a layer may have, such as Blend Method, or for a circle its radius.

Every parameter has a type - a circle's radius is a Real number, its color is a Color, and so on. Synfig Studio won't let you set its radius to Red, or its color to 5.7, because it knows what type each parameter is supposed to be.

In Synfig, the values of parameters can be changed, either by directly manipulating the item on the canvas, or by using the Parameters Panel window to alter the values by typing them in directly.

Some parameters can be defined has statics : they will not accept changes over the time.

Parameter values are ValueNodes. This basically means that their value can be animated over time. They can be simple:

"this radius is 3.4, and stays 3.4 for ever"

but are a complete description of the value through the course of the animation

"the radius is 3.4 at the beginning,
 moves smoothly up to 7.6 at the middle,
 then jumps instantly to 2.0
 and stays there until the end of time"

This complete description is achieved by the use of Waypoints, which are associated with each ValueNode.

See also