jloos Posted August 24 Share Posted August 24 Hallo, Ich möchte die Kameras nur umschalten, wenn die "Kamera Grundstellung" aktiv ist. Wie kann ich feststellen, ob die Kamera aktiv ist? Gruß Jürgen Link to comment Share on other sites More sharing options...
Herman Posted August 24 Share Posted August 24 (edited) Dear members, I apologize for the previous answer. ( deleted ) Hello @jloos , Does this help ? Liebe Mitglieder, ich entschuldige mich für die vorherige Antwort. ( gelöscht ) Hallo @jloos , Hilft das? local cam = layout.activeCameras[0] if cam == nil then $("Txt").text = "not active" else $("Txt").text = cam.name end With layout.activeCameras[0] you can see if a specific camera is active or not. ( in view 0 ) Mit layout.activeCameras[0] können Sie sehen, ob eine bestimmte Kamera aktiv ist oder nicht. ( in Ansicht 0 ) Regards, Herman Edited August 24 by Herman changed my answer Link to comment Share on other sites More sharing options...
Phrontistes Posted August 24 Share Posted August 24 (edited) vor 3 Stunden schrieb jloos: Ich möchte die Kameras nur umschalten, wenn die "Kamera Grundstellung" aktiv ist. Da brauchst Du eine Skriptbedingung, weil die Frage, ob eine Kamera aktiv ist, nicht graphisch formuliert werden kann. Diese Bedingung lautet: if layout.activeCameras[0] == $("Camera L") then return true end wobei Deine "Kamera Grundstellung" hier "Camera L" heißt wie in diesem kleinen Beispiel. 202040824 Switch camera.mbp Edited August 24 by Phrontistes typo Link to comment Share on other sites More sharing options...
Phrontistes Posted August 24 Share Posted August 24 (edited) vor 2 Stunden schrieb Herman: Hello, probably I misunderstand the question I think so too. His camera is known. We don't need a list. See my example. Edited August 24 by Phrontistes typo Link to comment Share on other sites More sharing options...
Herman Posted August 24 Share Posted August 24 Hello @Phrontistes , I saw it, and changed it before your answer. (crossed messages). , Of course we do not need a list. But thank you Hallo @Phrontistes , ich habe es gesehen und vor Ihrer Antwort geändert. (gekreuzte Nachrichten). Natürlich brauchen wir keine Liste. Aber danke Greetings, Herman Link to comment Share on other sites More sharing options...
jloos Posted August 26 Author Share Posted August 26 Hallo @Herman und @Phrontistes, vielen Dank für Eure Hilfe. Die eine Zeile code funktioniert gut. Gruß Jürgen Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now