Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions frontend/docs/scripting/functions/GetMyFacingAngle.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,9 @@ The facing angle is stored in the specified variable.
## Examples

```c
public OnPlayerText(playerid, text[])
{
new Float:Angle;
GetMyFacingAngle(Angle);
printf("I am currently facing %f!", Angle);

new Float:angle;
GetMyFacingAngle(angle);
printf("I am currently facing %f!", angle);
```

## Related Functions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,9 @@ Ugao posmatranja je pohranjen u navedenoj varijabli.
## Primjeri

```c
public OnPlayerText(playerid, text[])
{
new Float:Angle;
GetMyFacingAngle(Angle);
printf("Trenutno posmatram %f!", Angle);

new Float:angle;
GetMyFacingAngle(angle);
printf("Trenutno posmatram %f!", angle);
```

## Srodne Funkcije
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,9 @@ tags: []
</div>

```c
public OnPlayerText(playerid, text[])
{
new Float:Angle;
GetMyFacingAngle(Angle);
printf("الان در زاویه %f رو به رو هستم!", Angle);

new Float:angle;
GetMyFacingAngle(angle);
printf("الان در زاویه %f رو به رو هستم!", angle);
```

<div dir="rtl" style={{ textAlign: "right" }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,9 @@ tags: []
## 示例代码

```c
public OnPlayerText(playerid, text[])
{
new Float:Angle;
GetMyFacingAngle(Angle);
printf("我正面对着 %f!", Angle);
}
new Float:angle;
GetMyFacingAngle(angle);
printf("我正面对着 %f!", angle);
```

## 相关函数
Expand Down
Loading