TV Effect
Posted: Fri May 24, 2019 5:50 am
Hello,
Well I've to tell you I'm into Löve since 4:00 this morning (now it's almost 8:00 time for breakfast ) so please have patience with me.
I'll have a question where it's not clear to me how this could be archived
For an Intro (first screen) my idea was to have in the middle of the screen a logo then a short animation above the logo (max a second long) and after the animation had finished display the second logo and hide the animation.
the animation I would love to create
https://www.youtube.com/watch?v=fA7GZsJGYBg
Does anyone have an idea how this can be recreated and displayed above my logo?
The logo (while I was unsure what to use here is created with quads)
Well I've to tell you I'm into Löve since 4:00 this morning (now it's almost 8:00 time for breakfast ) so please have patience with me.
I'll have a question where it's not clear to me how this could be archived
For an Intro (first screen) my idea was to have in the middle of the screen a logo then a short animation above the logo (max a second long) and after the animation had finished display the second logo and hide the animation.
the animation I would love to create
https://www.youtube.com/watch?v=fA7GZsJGYBg
Does anyone have an idea how this can be recreated and displayed above my logo?
The logo (while I was unsure what to use here is created with quads)
Code: Select all
imgLogo = love.graphics.newImage('logo.png')
spritePosX = 0
spritePosY = 0
spriteWidth = 790
spriteHeight = 216
quadLogo = love.graphics.newQuad(spritePosX, spritePosY, spriteWidth, spriteHeight, imgLogo:getDimensions()