tatogame's Forum Posts

  • I've played (and hacked) around with a single effect adding some parameters (center, angle, rgb value...) and removing some extra stuff http://risingstorage.blob.core.windows. ... index.html

    I'm looking for some "tunnel effect" for a prototype...

    Do you think is possible to convert effects like this?

    https://www.shadertoy.com/view/ldfXzN

    https://www.shadertoy.com/view/MsfSW4

    https://www.shadertoy.com/view/XdBSzd

  • I've got the examples and works perfectly on IE and Firefox but on chrome i've got timeout errors :

    LoadBalancingClientState: Uninitialized -> ConnectingToNameServer
    Photon-Javascript_SDK.min.js:21 LoadBalancingClientConnecting to NameServer ws://ns.exitgames.com:9093
    preview_prelude.js:55 [Construct 2] Function object: called function 'setFishDest', but no event was triggered. Is the function call spelt incorrectly or no longer used?
    common_prelude.js:33 [Construct 2] Suspending
    Photon-Javascript_SDK.min.js:3 WebSocket connection to 'ws://ns.exitgames.com:9093/' failed: Error in connection establishment: net::ERR_CONNECTION_TIMED_OUT
    Photon-Javascript_SDK.min.js:21 NameServer: PhotonPeer[_onError] - Connection error: {}a.log @ Photon-Javascript_SDK.min.js:21a.error @ Photon-Javascript_SDK.min.js:20a._onError @ Photon-Javascript_SDK.min.js:15_socket.onerror @ Photon-Javascript_SDK.min.js:4
    Photon-Javascript_SDK.min.js:21 LoadBalancingClientState: ConnectingToNameServer -> Error
    Photon-Javascript_SDK.min.js:21 LoadBalancingClientState: Error -> Error[/code:9kule286]
  • There is a bug in Nw.js... Actually TTS doesn't work :\ https://github.com/nwjs/nw.js/issues/1661

  • Interesting... beta request sent!

  • You can use some versioning software to sync changes. You can work at the same project but not at the same event sheet/layout (personally tested).

    Search git,sourcetree,bitbucket, visual studio online

  • wow, so spam, much bot, very annoying :doge:

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Beautiful!

  • Problem Description

    "StringValue" Method of "XML" plugin doesn't work properly on IE.

    In the runtime.js of xml plugin (row 270) actually Construct use this method

    						
    			if (!result)
    				ret.set_string("");
    			else if (this.runtime.isIE)
    				ret.set_string(result.nodeValue || "");
    			else
    				ret.set_string(result.stringValue || "");
    [/code:2p5lwknn]
    But The nodeValue property of XML elements is always null, because the element content is actually stored within text nodes inside the element. If the content is simple enough, you can do something like [i]result.firstChild.nodeValue[/i] but i personally prefer the [url=http://help.dottoro.com/ljmmmksq.php]nodeTypedValue[/url] method. 
    Actually, I've modified the code as
    [code:2p5lwknn]
    			if (!result)
    				ret.set_string("");
    			else if (this.runtime.isIE)
    				ret.set_string(result.nodeTypedValue || ""); //Workaround by RisingPixel
    			else
    				ret.set_string(result.stringValue || "");
    [/code:2p5lwknn]
    And it works!
        
    [b]Attach a Capx[/b]
    I can't upload my full project at this moment, but i can attach a screenshot of the debugger's precise line [url=http://imgur.com/8aCx4Er]http://imgur.com/8aCx4Er[/url]
    If you need, I can make a custom .capx later
    
    [b]Steps to Reproduce Bug[/b]
    [ul]
        [li] Create a multi-level XML with some text and number value
        [/li][li] Use XMLPlugin.StringValue('/yournode/yourchildnode") in a console.log or in a textbox[/li][/ul]
        
    [b]Observed Result[/b]
     Returns nothing...
        
    [b]Expected Result[/b]
    Returns some text
        
    [b]Affected Browsers[/b]
    [ul]
        [li] Chrome: (NO)
        [/li][li] FireFox: (NO)
        [/li][li] Internet Explorer: (YES)[/li][/ul]
        
    [b]Operating System and Service Pack[/b]
    Windows 8.1 with Internet Explorer 11
        
    [b]Construct 2 Version ID[/b]
    Construct R200 64bit with Business license
  • I think it would be better one effect.fx file each effect than an unique big "else if" file... anyway thanks for sharing

  • Gigatron You can also look some inspirational stuff in http://shadertoy.com/

  • good work! You will release it as a downloadable construct 2 effect?

  • You say right! Sometimes Microsoft gives free account xD (BizSpark, YouthSpark... if you are a student or a startup... it's free!) https://www.dreamspark.com/student/

    Once it was annual subscription, now it's one time registration payment <img src="{SMILIES_PATH}/icon_e_wink.gif" alt=";)" title="Wink">

  • Windows App store is one-time registration payment of $19 for individuals and $99 for companies

    Windows App Store is actually free...

  • I'm using this https://github.com/pipwerks/scorm-api-wrapper with some javascript hardcoded stuff... and it works <img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz">

  • Any updates?