Jump to content

Documentation correction


photo

Recommended Posts

Hi

 

 

I think we all find some wrong information in the documentation.

Such a thread may be a good point to tell it to unigine so they can correct it and we all gain a better documentation.

 

 

So lets start:

 

Source:

https://developer.unigine.com/en/docs/1.0/code/gui/ui_widgets

 

Part:

vslider and hslider

 

Correction:

<hslider name="Test::vslider" export="1" align="expand" min="0" max="1000" value="500" height="100" button_height="30">
   <attach format="Value: %.1f" [b]multiplier="1000"[/b]>vslider_label</attach>
</hslider>
<label name="vslider_label" width="70"/>

 

and

 

<hslider name="Test::hslider" export="1" align="expand" min="500" max="3500" value="1000" width="100" button_width="30">
   <attach format=" %.1f" [b]multiplier="1000"[/b]>hslider_label</attach>
</hslider>
<label name="hslider_label" width="28"/>

 

Multiplier is used as integer and not as float. Result is divided and not multiply through it.

 

Correction:

Vslider shows a hslider as example (Source code (XML)).

 

 

Source:

https://developer.unigine.com/en/docs/1.0/getting_started/console

 

Part:

General Settings

 

Correction:

video_app can also return direct3d11.

 

 

 

Greets

Manuel

 

 

PS: Thanks for the online manual! It helps a lot, had so much troubles with the chm file. :(

Link to comment
×
×
  • Create New...