Q-SYS Designer
PIP in Qsys Desginer?
How do you create a selectable PIP (picture in picture) mode in Qsys Designer ?
How do you create a selectable PIP (picture in picture) mode in Qsys Designer ?
This option is not offered directly by Q-Sys, so it might be possible in a roundabout way.
function love.load()image1 = love.graphics.newImage("image1.png")image2 = love.graphics.newImage("image2.png")canvas = love.graphics.newCanvas(image1:getWidth(), image1:getHeight())endfunction love.draw()-- draw on the virtual canvaslove.graphics.setCanvas(canvas)love.graphics.clear()love.graphics.draw(image1)love.graphics.draw(image2, x, y, 0, 0.5, 0.5, image2:getWidth()/2, image2:getHeight()/2)love.graphics.setCanvas()-- Draw the virtual canvas on the screenlove.graphics.draw(canvas)endfunction love.update(dt)-- controls to adjust the position of the second imageif love.keyboard.isDown('up') theny = y - 100 * dtendif love.keyboard.isDown('down') theny = y + 100 * dtendif love.keyboard.isDown('left') thenx = x - 100 * dtendif love.keyboard.isDown('right') thenx = x + 100 * dtendend
You know a better answer?
The question about QSC Q-SYS Designer has already been answered, but there may be a better solution or alternative available by now. If you know it, answer the question now and increase your reputation as an industry expert in our B2B community.
How can I connect 2 UCIs with each other?
<1Kviews
I have 2 touch panels of different sizes. How can I connect them so that they always display the same thing?
Where can I find the files from the emulation mode?
<1Kviews
Where can I find the files from the emulation mode?
Can I integrate external Lua scripts?
<1Kviews
Can I integrate external Lua scripts? If so, how?
Was the content helpful to you?