How can I make water pour from a flask in game maker where have obj_flask
, obj_water
, and obj_container
.
I want to make the obj_water
pour from obj_flask
into the obj_container
.
相关问题
- GameMaker Studio 2 collaboration between windows a
- Sending whole folder content to client with expres
- Conflicting KML xmlns attribute from KML to XSLT
- How to make water pour in GML?
- How to use gml or shp files on Google Maps api v3?
相关文章
- GameMaker Studio 2 collaboration between windows a
- Sending whole folder content to client with expres
- Networkx解析GML写不可用GML文件(Networkx parse gml writing
- Conflicting KML xmlns attribute from KML to XSLT
- How to make water pour in GML?
- 的UnicodeDecodeError写入文件(UnicodeDecodeError for wri
- How to use gml or shp files on Google Maps api v3?
- Networkx parse gml writing unusable gml files
This depends hugely on how you want to achieve this effect. You could for example have an animated sprite stretching from the flask to the container. Or you could create water droplet instances at a given time rate and let them be affected by gravity. Or you could use a particle system, but this usually gives you less control if you want to check if it actually hit the container.
I can show you how to make the second idea to get you started.
obj_jug
obj_droplet
This will not give a great effect, but it will do what is being asked.