Free Asset Waterfall Animation
A downloadable asset pack
Free Asset, animated Waterfall, consisting of two texture animations, in total 17 textures in 256x256, as well as a mesh in the shape of the waterfall. Make sure to read the readme.txt.
This animation can be viewed live in the browser here:
https://jfkeo1010etc.itch.io/stress-test-for-copperlichtjs
Credit appreciated. MAY NOT BE REDISTRIBUTED AS ASSET.
Download
Download
waterfall_rel1.zip 542 kB
Install instructions
Depending on engine procedure may differ, but you'll figure it out.
Comments
Log in with itch.io to leave a comment.
Hello,
Great Job!
I had to use only the images of your waterfall asset. They are in a (free) RPG on mobile :
Playstore : https://play.google.com/store/apps/details?id=org.godotengine.franckushimama
Appstore : https://apps.apple.com/fr/app/franckushimama/id6504882306
Thanks, glad to see it in use-
Hey Dieter, how's it going? it's been a while
I'm fine, thanks. Hopefully you too!
👍
This looks awesome.. possible porting to B3D?
Not much to port. I used the following to make the gif (OBS capturing the blitz window):
Graphics3D 800,600,32,2
SetBuffer BackBuffer()
camera=CreateCamera()
TranslateEntity camera,0,0,-2.0
z2_max=5;15;5
Dim concentric(z2_max)
For i=0 To z2_max
num$=""+(i+1)
concentric(i)=LoadTexture("frames1\waves_concent_tex"+num$+".png",2)
Next
mesh=LoadMesh("waterfall.b3d")
z2=0
lake=CreateCube()
ScaleEntity lake,1.5,.01,1.5
RotateEntity lake,0,180,0
TranslateEntity lake,0,-.8,0
Dim waterfall_tex(10)
For i=0 To 10
waterfall_tex(i)=LoadTexture("frames1\waterfall_tex"+i+".jpg",2)
Next
EntityFX mesh,1 Or 16
brush=CreateBrush()
;BrushBlend brush,3
BrushTexture brush,waterfall_tex(0)
PaintMesh mesh, brush
EntityParent lake,mesh
EntityFX lake,1 ;Or 16
EntityBlend lake,1
CameraClsColor camera,0,0,255
;--------------------------main
While KeyHit(1)=0
If KeyDown(57) Then TurnEntity mesh,0,1,0
BrushTexture brush,waterfall_tex(z)
PaintMesh mesh, brush
EntityTexture lake,concentric(z2)
RenderWorld()
Flip
z=z+1
If z>10 Then z=0
z2=z2+1
If z2>z2_max Then z2=0
Delay 50
Wend
cheers, will try this out asap.