|
Post by Invector on Feb 9, 2017 8:32:27 GMT
Game developed by Massive Work Studio in 45 days for the Brasil Game Show 2016
|
|
|
Post by Strider on Feb 18, 2017 5:38:02 GMT
This looks really nice!
|
|
|
Post by 1337monkey on Mar 29, 2017 12:35:13 GMT
I really like the effect when enemy dies and particles goes into you. It looks smooth and beautiful, any tips how could I achieve it? Haven't worked with particles a lot yet and didn't made any research on this kind of particle animations or whatever it is, so just asking here before looking anywhere else.
EDIT: Did a little bit of searching, found a script that attracts particles to your wanted transform, all you got to do is play with particle system to get the effect you want.
using UnityEngine; using System.Collections; public class ParticleAttractor : MonoBehaviour { [SerializeField] private Transform _attractorTransform; private ParticleSystem _particleSystem; private ParticleSystem.Particle[] _particles = new ParticleSystem.Particle[1000]; public override void Start () { _particleSystem = GetComponent<ParticleSystem> (); } public void LateUpdate() { if (particleSystem.isPlaying) { int length = _particleSystem.GetParticles (_particles); Vector3 attractorPosition = _attractorTransform.position; for (int i=0; i < length; i++) { _particles [i].position = _particles [i].position + (attractorPosition - _particles [i].position) / (_particles [i].lifetime) * Time.deltaTime; } _particleSystem.SetParticles (_particles, length); } } }
|
|
|
Post by RoguesGalleryGames on Dec 25, 2017 2:12:42 GMT
The environments are amazing. It has a very H.R. Giger feel to it. That's a good thing.
|
|
|
Post by iamabdurrehman on May 3, 2018 7:14:53 GMT
Beautiful game, looks intense, just curious how did you turn on and off the particles on your weapon coz thats so eye catching, im trying it myaelf but no success.
|
|
|
Post by Invector on May 8, 2018 17:02:09 GMT
Hey guys!
Dolmen is on Kickstarter, they switch to Unreal a while ago but it's definitely worth to check it out and support these guys!
|
|
|
Post by Legion on May 8, 2018 20:13:32 GMT
Are they your friends?
They have been following us for a long time on Twitter and the truth is that it looks good, a spectacular improvement from the video that we saw here to what they publish now.
|
|
|
Post by Invector on May 12, 2018 14:05:23 GMT
Are they your friends? They have been following us for a long time on Twitter and the truth is that it looks good, a spectacular improvement from the video that we saw here to what they publish now. Nope, but we're always supporting good projects They almost had it with this Kickstarter, it was 98% completed and suddenly in the last hours of the campaign it was dropped to 43%... don't know if it was a bug or whatever, but they will continue working on the project, so let's continue supporting.
|
|
|
Post by Legion on May 12, 2018 23:46:18 GMT
Are they your friends? They have been following us for a long time on Twitter and the truth is that it looks good, a spectacular improvement from the video that we saw here to what they publish now. Nope, but we're always supporting good projects They almost had it with this Kickstarter, it was 98% completed and suddenly in the last hours of the campaign it was dropped to 43%... don't know if it was a bug or whatever, but they will continue working on the project, so let's continue supporting. We saw it when there were a few hours to finish, they were very close ... It's a shame, we hope they can get funding again and soon, the project is great.
|
|