Skip to content

Commit

Permalink
Fixed typo in custom easing example
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Dec 29, 2023
1 parent 4152e2f commit 43c5d2f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/en/manuals/property-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ You can create custom easing curves by defining a `vector` with a set of values
For example, the vector:

```lua
local values = { 0, 0.4, 0.2, 0.2, 0.5. 1 }
local values = { 0, 0.4, 0.2, 0.2, 0.5, 1 }
local my_easing = vmath.vector(values)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/gr/manuals/animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ gui.animate(node, hash("position.x"), 100, gui.EASING_INOUTQUAD, 0.5)
Για παράδειγμα, το διάνυσμα:

```lua
local values = { 0, 0.4, 0.2, 0.2, 0.5. 1 }
local values = { 0, 0.4, 0.2, 0.2, 0.5, 1 }
local my_easing = vmath.vector(values)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/pl/manuals/property-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Możesz tworzyć własne funkcje wygładzania zdefiniowane jako specjalny `vecto
For example, the vector:

```lua
local values = { 0, 0.4, 0.2, 0.2, 0.5. 1 }
local values = { 0, 0.4, 0.2, 0.2, 0.5, 1 }
local my_easing = vmath.vector(values)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/ru/manuals/property-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ gui.animate(node, hash("position.x"), 100, gui.EASING_INOUTQUAD, 0.5)
К примеру, данный вектор:

```lua
local values = { 0, 0.4, 0.2, 0.2, 0.5. 1 }
local values = { 0, 0.4, 0.2, 0.2, 0.5, 1 }
local my_easing = vmath.vector(values)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/manuals/property-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ gui.animate(node, hash("position.x"), 100, gui.EASING_INOUTQUAD, 0.5)
示例如下:

```lua
local values = { 0, 0.4, 0.2, 0.2, 0.5. 1 }
local values = { 0, 0.4, 0.2, 0.2, 0.5, 1 }
local my_easing = vmath.vector(values)
```

Expand Down

0 comments on commit 43c5d2f

Please sign in to comment.