Search Result

  • RE: Visionaire RC2 Bugfix Update Changelog

    Example:1. Start cutscene2. Send character TO XY and wait3. End cutsceneOk. Done.  It seems I need more learn for VS . I really didn't know that this code need to block in start and end . VS strongly need to PDF manual for users. @ARFLmeI agree with you . I have to skip shader toolkit at the moment@SebastianCharacter walking to position but 'Wait' function doesn't work and you can skip it by any click . With Marvel method works perfect.

    by TinTin, 8 years ago

    54
    0
    TinTin 8 years ago
  • RE: Visionaire RC2 Bugfix Update Changelog

    Please see here:[IMG]http://uupload.ir/files/lwhe_wait.png[/IMG]For shaders : I use shader toolkit that made complete black screen on AndroidPlease use the regular image uploader that we provide in this forum instead of linking to external images.

    by marvel, 8 years ago

    54
    0
    marvel 8 years ago
  • RE: Visionaire RC2 Bugfix Update Changelog

    Please see here:[IMG]http://uupload.ir/files/lwhe_wait.png[/IMG]For shaders : I use shader toolkit that made complete black screen on Android .You can test example shader toolkit (ripple1,2....)

    by TinTin, 8 years ago

    54
    0
    TinTin 8 years ago
  • RE: Visionaire RC2 Bugfix Update Changelog

    TinTin, If you have problems, please send us your game, describe your problem and we will check it out. But you don't help us by telling us "it doesn't work for me". You could also upload screenshots of your action part. Maybe we can find the problem there. And please tell us about your shader problems. Which kind of shaders? Please send us your game or a short demo of the problem so that we can test it. And please also remember that there already are visionaire games in the iOS Market - like for example:Whispered World: https://itunes.apple.com/de/app/the-whispered-world-special-edition/id962682252?mt=8Game Royale 2https://itunes.apple.com/de/app/game-royale-2-secret-jannis/id1168037742Game Royale 1https://itunes.apple.com/de/app/game-royale-j%C3%A4ger-der-verlorenen-glatze/id1062099661?mt=8The automatic export is still not available in Visionaire 5, thats true.  But it is possible to create and release games for iOS, as you can see in the upper list. If you urgently need help with exports, probably Simon can help you with that. 

    by marvel, 8 years ago

    54
    0
    marvel 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    (Well actually, I could apply some reeeally heavy Shader to something and check that Way... maybe I should try that out...)That would be nice (and easy i guess using the in-game dev console to check the system recources)

    by dionous, 8 years ago

    12
    0
    dionous 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    I don't know of a specific Command for that, but you could, when removing the Effect, reiterate its Addition to the Opject you want it to keep. But I can see how that might be a little janky, and a Chore (depending on the Amount of Objects).Maybe Simon can anwer whether or not a Shader applied to an Object in a different Scene will still influence Performance in any Way at all (because if not, then why bother?), because you and I can only guess.(Well actually, I could apply some reeeally heavy Shader to something and check that Way... maybe I should try that out...)

    by caligarimarte, 8 years ago

    12
    0
    caligarimarte 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    That was it , thanks so much! Had missed this part of the docs.Have checked all effects and they are working ok, except:ripple1ripple2highlightI have also noticed a 'light1' effect in the shader but doesn't seem to do anything.How can i remove an effect from an object? I guess it is not wise for performance purposes to leave an effect on an object forever, so i need to be able to detach an effect when leaving the scene.

    by dionous, 8 years ago

    12
    0
    dionous 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    The syntax for binding to object has changed because the shaderset numbers were clunky.http://www.visionaire-studio.com/luadocs/#shadersInstead of shaderSetOptions({{shader = shader_effects[eff].num(), comp_dst=5, comp_src=4 }}, 2) Objects.Water.ShaderSet = 2it's now:Objects.Water.ShaderSet = shader_effects[eff].num()

    by SimonS, 8 years ago

    12
    0
    SimonS 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    Thanks for the reply; well have managed to get all these effects working, but not on a specific object yet. The calling code suggested before in the forum doesn't seem to work any more:for example:local eff="ripple2"shaderAddEffect(eff) shaderRemoveEffect(eff)shader_effects[eff].num.strength=1 bind(eff, "time", field("shader_iTime"))  shaderSetOptions({{shader = shader_effects[eff].num(), comp_dst=50, comp_src=4 }}, 1) Objects.'object name'.ShaderSet = 1shaderRemoveEffect(eff) is VERY weird here and causes black screen. If it is commented out the effect is shown. (why we remove the effect here???)shader_effects[eff].num.strength=1 bind(eff, "time", field("shader_iTime"))Above maybe not needed?? Because they are already included in shaderAddEffect(eff) function!local eff = "NAME_OF_THE_SHADER"shader_effects[eff] = { shader = Shaders[eff].Compiled }shaderAddEffect(eff)Above sounds interesting, but how you can apply the effect to an object only?

    by dionous, 8 years ago

    12
    0
    dionous 8 years ago
  • RE: Shader Toolkit Effects not Working properly in 5.0RC2

    Well, I cannot give you an easy Solution, but I can tell from looking at the new Shadertoolkit that it does not actually include the several Shaders inside the Script -- which makes Sense, because in Vis5 that does not work anymore. Strangely, I know that shaderBlur() still works fine, so I have no Idea how that works exactly (is it not Part of the Shader-Toolkit??). But if these Shaders you want do not work anymore, then go to the old Shadertoolkit-Script, look for the Areas which are huge Piles of different-looking Code inside of Strings, and copy those Parts into separate Shaders (in the Editor's new "Shader"-Category), and change the Codes until you get no Error-Messages at the Bottom anymore (I guess that is easier said than done, seems like most People on the Forum haven't looked much into GLSL-Coding, and I am also but a mere Amateur). Once you have done that, you can call the Shader with a Script very similar to how it worked in Vis4:local eff = "NAME_OF_THE_SHADER" shader_effects[eff] = { shader = Shaders[eff].Compiled } shaderAddEffect(eff)All of that might seem as of little Use if you do not know GLSL, but I personally tend to say that People should use their own Shaders if they can, it's actually kind of fun -- connects Coding, which I do not like so much, with creating visual Art, which I enjoy.

    by caligarimarte, 8 years ago

    12
    0
    caligarimarte 8 years ago