Unity_1lab/1 laba/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Documentation~/Sine-Node.md
Vladislav 23109c3619 Небольшой фикс звуков
-Добавил отдельный звук шага и запахало как надо.
2025-09-16 17:48:42 +03:00

524 B

Sine Node

Description

Returns the sine of the value of input In.

Ports

Name Direction Type Description
In Input Dynamic Vector Input value in radians.
Out Output Dynamic Vector Output value. Range (-1 to +1).

Generated Code Example

The following example code represents one possible outcome of this node.

void Unity_Sine_float4(float4 In, out float4 Out)
{
    Out = sin(In);
}