diff options
author | David Seikel | 2011-02-08 22:44:40 +1000 |
---|---|---|
committer | David Seikel | 2011-02-08 22:44:40 +1000 |
commit | b0486b4aa577412f515070d3eb418fbcc45c629d (patch) | |
tree | c9f0ed6a579e5ec2a98f45b8ca6a5f1cef8d5ee9 /linden/indra/newview/character/attentionsN.xml | |
parent | Add the Meta7 and white_Meta7 skins, making Meta7 the default skin. (diff) | |
download | meta-impy-b0486b4aa577412f515070d3eb418fbcc45c629d.zip meta-impy-b0486b4aa577412f515070d3eb418fbcc45c629d.tar.gz meta-impy-b0486b4aa577412f515070d3eb418fbcc45c629d.tar.bz2 meta-impy-b0486b4aa577412f515070d3eb418fbcc45c629d.tar.xz |
Artwork and font files in the repo now.
My policy is to have it all in the repo. None of this downloading pre built stuff from people with no guarantee that
they will still have the files a month from now. Been burnt with that before.
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/character/attentionsN.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/linden/indra/newview/character/attentionsN.xml b/linden/indra/newview/character/attentionsN.xml new file mode 100644 index 0000000..7c02415 --- /dev/null +++ b/linden/indra/newview/character/attentionsN.xml | |||
@@ -0,0 +1,51 @@ | |||
1 | <?xml version="1.0" encoding="US-ASCII" standalone="yes"?> | ||
2 | <!-- | ||
3 | Default values for "Look At" controls. | ||
4 | Various events compete for avatar attention. I.E. control where the | ||
5 | user's avatar looks. | ||
6 | The avatar's head will turn to look towards the source of those events | ||
7 | as much as is possible. | ||
8 | If the head cannot turn due to an animation override, the eyes will still | ||
9 | track those events. | ||
10 | Avatar attention will be taken by events of equal of greater priorities | ||
11 | and will last for timeout number of seconds before reverting to idle. | ||
12 | Negative timeout values indicate attentions that never time out. | ||
13 | Avatar sex determines which set of attention settings are used. | ||
14 | Within each set, the following named attentions relate to the indicated events: | ||
15 | |||
16 | IDLE: Tracks the mouse pointer movement. | ||
17 | AUTO LISTEN: Tracks nearby chat. | ||
18 | FREELOOK: Tracks "target objects" and a case of mouse moved in 3rd person mode. | ||
19 | RESPOND: Tracks the beginning of typing. | ||
20 | HOVER: Tracks objects the mouse lingers over when "show hover tooltips" is on. | ||
21 | CONVERSATION: Tracks avatars and other objects clicked on. | ||
22 | SEOECT: Tracks objects grabbed and being moved. | ||
23 | FOCUS: Freezes during avatar customization and when focused on object or point. | ||
24 | MOUSELOOK: Tracks center of view when in mouselook view mode. | ||
25 | --> | ||
26 | |||
27 | <linden_attentions version="1.0"> | ||
28 | <gender name="Masculine"> | ||
29 | <param attention="idle" priority="1.0" timeout="3.0" /> | ||
30 | <param attention="auto_listen" priority="3.0" timeout="4.0" /> | ||
31 | <param attention="freelook" priority="2.0" timeout="2.0" /> | ||
32 | <param attention="respond" priority="3.0" timeout="3.0" /> | ||
33 | <param attention="hover" priority="4.0" timeout="1.0" /> | ||
34 | <param attention="conversation" priority="5.0" timeout="3.0" /> | ||
35 | <param attention="select" priority="3.5" timeout="-1" /> | ||
36 | <param attention="focus" priority="3.5" timeout="20.0" /> | ||
37 | <param attention="mouselook" priority="7.0" timeout="-1" /> | ||
38 | </gender> | ||
39 | <gender name="Feminine"> | ||
40 | <param attention="idle" priority="1.0" timeout="3.0" /> | ||
41 | <param attention="auto_listen" priority="3.0" timeout="4.0" /> | ||
42 | <param attention="freelook" priority="2.0" timeout="2.0" /> | ||
43 | <param attention="respond" priority="3.0" timeout="6.0" /> | ||
44 | <param attention="hover" priority="4.0" timeout="1.0" /> | ||
45 | <param attention="conversation" priority="5.0" timeout="6.0" /> | ||
46 | <param attention="select" priority="2.5" timeout="-1" /> | ||
47 | <param attention="focus" priority="2.5" timeout="10.0" /> | ||
48 | <param attention="mouselook" priority="7.0" timeout="-1" /> | ||
49 | </gender> | ||
50 | </linden_attentions> | ||
51 | |||