Giter Site home page Giter Site logo

Comments (5)

johntaxmi avatar johntaxmi commented on September 26, 2024 1

Yea, I guess I somehow made it work as indeed.
So this request can now close.

But either way, I think that, if we were able to check the transition "to" and "from" in a single check would be a great addition.

Thanks again! Have a nice day.

from sceneswitcher.

WarmUpTill avatar WarmUpTill commented on September 26, 2024

Sorry if I am misunderstanding your request, but can't you just do something like this?
image

Here are a few more examples:
https://github.com/WarmUpTill/SceneSwitcher/wiki/Performing-actions-only-when-transitioning-from-A-to-B

from sceneswitcher.

johntaxmi avatar johntaxmi commented on September 26, 2024

That could work only in this way, but if I add more checks it seems to does not work properly, coz the latest overlaps the first.

I want to do the following
Screenshot_1

But I am missing what I want.
The 3 first checks are simple, but I want at the last one to have the following

And not transitioning to INTERMIDIATE SCENE from HALFTIME SCENE.
Is it possible to implement that check?

In the way I have it, evertime I transition to the INTERMIDIATE SCENE it does not do the actions, but I want to not do the actions only when I transitioned to INTERMIDIATE SCENE from HALFTIME SCENE.

Thanks in advanced.

from sceneswitcher.

Destroy666x avatar Destroy666x commented on September 26, 2024

Order matters. Did you try moving And not below If? The conditions are read from left to right or top to bottom.

from sceneswitcher.

WarmUpTill avatar WarmUpTill commented on September 26, 2024

Just as mentioned by @Destroy666x the order of the conditions matter.
Conditions are evaluated from the top to the bottom.

So at the moment you have setup the following logic:
(((from halftime OR from timeout) OR from end) AND NOT to intermediate)

If you want to setup the following logic ...:
(((NOT to intermediate AND from halftime) OR from end) OR from timeout)
... I would suggest moving that into its own macro and relying on the Macro condition type like this:
image

from sceneswitcher.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.