Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Oroborus77

Pages: [1]
1
General Discussion & Help / Re: layouts
« on: February 24, 2024, 10:17:17 AM »
xOrigin and yOrigin are used to move the center of your logo to a position. its not what you want, try changing y="1060", it will move your logo on the y axis (vertical) to the 1060th screens pixel (bottom of screen on 1080p).

Or simply try to use "bottom" instead of a specific value.

y="bottom" yOrigin="bottom"

2
General Discussion & Help / Re: Latin characters in font
« on: February 10, 2024, 02:50:55 PM »
Hello! Any news or improvement on UTF8 support ? could be a really awesome feature for non english-speaking people.

In all case thanks a lot for this wonderful front-end.

3
Hi ! and thank you for the answer.

4
Hi !

Is there a way to keep a video playing on the second monitor while playing a game on the first one monitor ?

This is the layouts settings for the scnd monitor i have :

Code: [Select]
<reloadableVideo type="backglass" mode="Layout" alpha="1" monitor="1" y="center" x="center" yOrigin="center" xOrigin="center" height="1920" width="1080" angle="0" layer="16">
  </video>
 
<reloadableImage type="logo" monitor="1" x="center" y="center" yOrigin="center" xOrigin="center" alpha="0" width="1920" maxHeight="1080" layer="15">
  <onGameEnter>
<set duration="0.25">
                <animate type="alpha" to="1" algorithm="easeinquadratic"/>
                <animate type="width" to="786" algorithm="easeinquadratic"/>
                <animate type="maxHeight" to="300" algorithm="easeinquadratic"/>
</set>
<set duration="0.25">
                <animate type="alpha" to="1" algorithm="easeinquadratic"/>
                <animate type="width" to="917" algorithm="easeinquadratic"/>
                <animate type="maxHeight" to="400" algorithm="easeinquadratic"/>
</set>
<set duration="0.25">
                <animate type="alpha" to="0.5" algorithm="easeinquadratic"/>
                <animate type="width" to="1048" algorithm="easeinquadratic"/>
                <animate type="maxHeight" to="500" algorithm="easeinquadratic"/>
</set>
<set duration="0.25">
                <animate type="alpha" to="0" algorithm="easeinquadratic"/>
                <animate type="width" to="1178" algorithm="easeinquadratic"/>
                <animate type="maxHeight" to="600" algorithm="easeinquadratic"/>
</set>
  </onGameEnter>
<onGameExit>
      <set duration="0.001">
                <animate type="alpha" to="0" algorithm="easeinquadratic"/>
                <animate type="width" to="655" algorithm="easeinquadratic"/>
                <animate type="maxHeight" to="249" algorithm="easeinquadratic"/>
      </set>
    </onGameExit >
</image>


Maybe with the "onGameEnter" action type i could be able to have this reloadable video still playing after launch a game ?

Sorry for the bad english, i hope its understandable...

Thanks in advance.

Pages: [1]