Vgui slideshow display: Difference between revisions
Jump to navigation
Jump to search
m (Robot: fixing template case.) |
(Cleanup) |
||
Line 1: | Line 1: | ||
{{ | {{base point|vgui_slideshow_display}} It is a [[Vgui|VGUI]] screen the displays images in a slideshow. | ||
==Creation Notes== | ==Creation Notes== | ||
Line 19: | Line 14: | ||
== | == Keyvalues == | ||
{{KV|Display Text|string|Text to display on top of the image. }} | |||
{{KV|Image Directory (materials/vgui/...)|string|Directory where images are located (materials/vgui/[directory]).}} | |||
{{KV|Min Slide Time|float|Minimum amount of random time that a slide is displayed.}} | |||
{{KV|Max Slide Time|float|Maximum amount of random time that a slide is displayed.}} | |||
{{KV|Cycle Type|choices|Order that images are displayed.}} | |||
:* 0 : Random | |||
:* 1 : Forward | |||
:* 2 : Backward | |||
{{KV|No List Repeat|choices}} | |||
:* 0 : Allow List Repeats | |||
:* 1 : No List Repeats | |||
{{KV|Panel width|integer|Width of the panel in units.}} | |||
{{KV|Panel height|integer|Height of the panel in units.}} | |||
{{KV Targetname}} | |||
{{KV Angles}} | |||
{{KV Parentname}} | |||
== Inputs == | |||
{{IO|Enable|Make slideshow visible.}} | |||
{{IO|Disable|Make slideshow invisible.}} | |||
{{IO|SetDisplayText|Sets the display text.|param=string}} | |||
{{IO|RemoveAllSlides|Removes all slides from slideshow.}} | |||
{{IO|AddSlides|Adds slides by keyword.|param=string}} | |||
{{IO|SetMinSlideTime|Sets min random time between slides.|param=float}} | |||
{{IO|SetMaxSlideTime|Sets max random time between slides.|param=float}} | |||
{{IO|SetCycleType|0 - random, 1 - forward, 2 - backward|param=integer}} | |||
{{IO|SetNoListRepeat|Sets if lists can be randomly picked twice in a row.|param=boolean}} | |||
{{I Targetname}} | |||
{{I Parentname}} | |||
== Outputs == | |||
{{O Targetname}} | |||
== | == See also == | ||
* | * [[VGUI Screen]] | ||
[[Category:GUI Entities]] | |||
[[Category:VGUI|S]] |
Revision as of 16:41, 28 July 2011
Template:Base point It is a VGUI screen the displays images in a slideshow.
Creation Notes
- Place it in the lower left corner of where you want the screen and rotate it so that the red axis points which way you want the screen to face.
- You'll need to move it slightly away from the surface it sits on to avoid Z-fighting. 1 unit is enough.
- Images in sub directories will NOT be included.
Adding Slides to Slideshow
- Keywords are added in the vmt like so: "%keywords" "test1, test2, another_sample_keyword, cow, animal"
- AddSlides can be used up to 16 times in succession to add addition slides. So you can add "cow" slides and then add "chicken" slides if you want both cows and chickens to be in the shuffle.
- Slides are first shuffled by keyword. So if you have 400 "cow" slides and 10 "chicken" slides there's still a 1 out of 2 chance that you'll see a chicken. Then if "chicken" is selected for display there's a 1 out of 10 chance that you'll see any specific chicken.
- The same keyword can be added multiple times to weight which slides are more common. So you could add "cow", "cow", "cow", "chicken" and you'll be 3 times more likely to see a cow in the shuffle than a chicken.
- Setting the cycle type to forward will display all the added images in order by keyword (in the order that the keywords were added), then in alphabetical order for each slide in the keyword.
Keyvalues
- Image Directory (materials/vgui/...) ([todo internal name (i)]) <string>
- Directory where images are located (materials/vgui/[directory]).
- Min Slide Time ([todo internal name (i)]) <float>
- Minimum amount of random time that a slide is displayed.
- Max Slide Time ([todo internal name (i)]) <float>
- Maximum amount of random time that a slide is displayed.
- Cycle Type ([todo internal name (i)]) <choices>
- Order that images are displayed.
- 0 : Random
- 1 : Forward
- 2 : Backward
- No List Repeat ([todo internal name (i)]) <choices>
-
- 0 : Allow List Repeats
- 1 : No List Repeats
- Name (targetname) <string>[ Edit ]
- The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g.
parentname
ortarget
).
Also displayed in Hammer's 2D views and Entity Report.See also: Generic Keyvalues, Inputs and Outputs available to all entities
- Pitch Yaw Roll (Y Z X) (angles) <QAngle>
- This entity's orientation in the world. Pitch is rotation around the Y axis, yaw is the rotation around the Z axis, roll is the rotation around the X axis.
Parentname:
- Parent (parentname) <targetname>
- Specifies a movement parent. An entity will maintain its initial offset from its parent. An attachment point can be added to the end of the name, separated by a comma.
Inputs
- Enable
- Make slideshow visible.
- Disable
- Make slideshow invisible.
- SetDisplayText <string >
- Sets the display text.
- RemoveAllSlides
- Removes all slides from slideshow.
- AddSlides <string >
- Adds slides by keyword.
- SetMinSlideTime <float >
- Sets min random time between slides.
- SetMaxSlideTime <float >
- Sets max random time between slides.
- SetCycleType <integer >
- 0 - random, 1 - forward, 2 - backward
- SetNoListRepeat <boolean >
- Sets if lists can be randomly picked twice in a row.
Parentname:
- SetParent <string >
- Move with this entity. See Entity Hierarchy (parenting).
- SetParentAttachment <string >
- Change this entity to attach to a specific attachment point on its parent. The entity will teleport so that the position of its root bone matches that of the attachment. Entities must be parented before being sent this input.
- SetParentAttachmentMaintainOffset <string >
- As above, but without teleporting. The entity retains its position relative to the attachment at the time of the input being received.
- ClearParent
- Removes this entity from the the movement hierarchy, leaving it free to move independently.