blob: fe808dea1b12ce9b93b88614e5e3c58c72b97ec4 (
plain)
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
46
47
48
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="floater_script_colors" title="COLORES DE SCRIPT">
<text name="color_pickers_label">
Elige los colores que desees:
</text>
<text name="text_label">
Texto
</text>
<text name="cursor_label">
Cursor
</text>
<text name="background_label">
Fondo
</text>
<text name="datatype_label">
Tipos de datos
</text>
<text name="event_label">
Eventos
</text>
<text name="string_literal_label">
Literales de cadena
</text>
<text name="constant_label">
Constante
</text>
<text name="flow_control_label">
Control de flujo
</text>
<text name="function_label">
Función
</text>
<text name="comment_label">
Comentar
</text>
<script_editor name="Script Preview">
/* Un ejemplo de script */
default
{
state_entry()
{
// Comment
string greeting = "Hola";
llSay(PUBLIC_CHANNEL, greeting);
}
}
</script_editor>
</floater>
|