Hi this looks nice especially the dynamic lighting. Would this be suitable for use on a mobile device or ps vita do you think ? How are your plasma splines being rendered are they rendered using unity particles , meshes or another type of system ? Could you give any figures on how many draw calls your demo scene is for example or perhaps compile an apk demo for android that I could try to see how it runs before purchasing ?
Thanks for reply.
All splines are meshes and are rendered using LineRenderer component.
Draw calls amount depends heavily on usage of dynamic lights. Without them, plasma ray with spiral effect takes 4 drawcalls, with them - 30 (you can regulate amount of lights on your systems). Basically, each active arc of system adds 1 drawcall, and each point light along arc adds some more (depending on scene setup).
Right now project undergoes some serious mobile testing with the help of some volunteers and I will inform you of results.
Preliminary results: Demo scene contains 30k static triangles(platforms and such) and max of 170k triangles from ArcReactor effects, and max of about 115 drawcalls(mostly due to heavy usage of dynamic lights - around 50 max without them). On Galaxy S2 at most performance-intense moment it run at 47 fps with lights on.
Hi I purchased this and can confirm it does work on mobile. It gets about 47 fps on a high end nexus 5 but about 20 fps on a ps vita with all the lights on. One suggestion I would have would be to create an arc manager object that can control and change the quality of the lighting and arcs based on the current frame rate. At present it is a bit time consuming having to select every arc point and turning the lighting off individually. It would be better if there was an option or script that all arcs could be controlled from. For example have an option where when a new arc was generated it checked the current frame rate and only enabled lighting from it if the fps was above a certain number. That way the quality could dynamically adjust based on the complexity of the scene and performance of the phone it was running on without the user having to worry about the lighting when they were creating the scenes.
If you mean rays collision with scene colliders - yes, all launchers on demo-scene are cofigured with that in mind.
For more info, you can consult manual on “ArcReactor_Launcher” component, specifically “Launch Method”, “Start behavior” and “End behavior” parameters.
If you meant something else or there isn’t enough info in the manual, ask away!
P.S. Update took longer than expected, but soon there will be version 1.01 containing performance manager, automatic flares and new spatial noise options.
My main job kept me pretty busy, so I only able to work on update during weekends. I think I’ll finish it around 20 July, so it should be available for download through Asset Store around 23 July.
Hi!
Concerning reflection of rays, please look at the new reflections demo.
If that is what you’re looking for, it will be available in 1.2 update in about 1-2 weeks. Tracing demo is also available.
Sources for both demos will be included in the update.
do you by any chance know if your Colorify shader is compatible with the PolyWorld conversion? It is just what I could use to no longer do it in photoshop, but it is only useful to me if the shader can run through PolyWorld.
I don’t use PolyWorld myself, so I can’t be sure. If PolyWorld uses standard Unity shaders, then you can easily swap them for Colorify shaders. If, on the other hand, there’s some custom shading going on (and my guess there is), Colorify obviously wouldn’t work from the box. If that’s the case, you can send me an example of PolyWorld shader and I would tell whether it would be possible to befriend it with Colorify.
P.S. There’s a thread about Colorify, so any further discussion of Colorify should probably be there.
Hi, How would you detect collision on object after the ray is cast? Like for instance if the laser beam hits a particular object, the object should detect it which would allow me make it do anything I want.
There’s a message system built-in into the Launcher component. You need to toggle “Send Message To Hit Objects” or “Send Message To Reflectors” parameters, and the component will automatically send messages to objects that’ve been hit. All you have to do to is to place an “ArcReactorHit()” or “ArcReactorReflection()” functions in any scripts on your objects, and they will be performed when they are hit by ArcReactor-launched ray.
The reflections demo-scene contains example of using “Send Message To Reflectors” parameter. If you look carefully, hit mirrors change their color continually - that’s done by changing variable in ArcReactorReflection() function.
P.S. It turned out I forgot to mention this in the manual, my apologies. I’ll update online manual as soon as I can.
P.P.S Updated manual and uploaded updated 1.2b version to Asset Store, should be available in 3-7 days.
I thought the shader on the mirrors are reflecting the light emitted from the lamps on the ray. Isn’t that whats happening? or the mirror is literally changing the material? I couldn’t figure it out.