-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAxis.java
More file actions
45 lines (39 loc) · 886 Bytes
/
Axis.java
File metadata and controls
45 lines (39 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package JAVARuntime;
//
/**
* @Author Lucas Leandro (ITsMagic Founder)
* MethodArgs filled by Carlos at 22-04-2022
*/
@ClassCategory(cat ={"Input"})
public final class Axis {
//
@MethodArgs({"name"})
public Axis(String name){
//
}
@JRDoc_EN("Returns the value of the Axis.")
@JRDoc_PT("Retorna o valor do Axis.")
@HideGetSet
public Vector2 getValue(){
//
return null;
//
//
}
@JRDoc_EN("Sets the value of Axis in the specified Vector2.")
@JRDoc_PT("Define o valor do Axis no Vector2 especificado.")
@HideGetSet
@MethodArgs({"value"})
public void setValue(Vector2 value){
//
}
@JRDoc_EN("Returns the name of the Axis.")
@JRDoc_PT("Retorna o nome do Axis.")
@HideGetSet
public String getName(){
//
return "";
//
//
}
}