Skip to content

UI.Float4Input

Name - Description Default Type
<input> The value is ignored.
<output> The value produced. Float4
Variable The variable that holds the input value. None Float4&Float4

A numeric input.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
(GFX.MainWindow
 :Contents
 (->
  (Setup
   (GFX.DrawQueue) >= .ui-draw-queue
   (GFX.UIPass .ui-draw-queue) >> .render-steps)
  (UI
   .ui-draw-queue
   (UI.CentralPanel
    (->
     (UI.Float4Input :Variable .float4)
     (ExpectFloat4))))

  (GFX.Render :Steps .render-steps)))