Jump to content

aktive Kamera feststellen


Recommended Posts

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 by Herman
changed my answer
Link to comment
Share on other sites

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 by Phrontistes
typo
Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...