Kategorie: Objekte
/ Suche
Ab Engineversion: 7.0 OC
(erweitert ab 9.0 OC)
Find_Property
Beschreibung
Search criterion: Finds all objects which have the property set to a value that converts to boolean true or equals the given value.
Syntax
array Find_Property(string property, any value);
Parameter
- property:
- Name of the property to check
- value:
- [opt] Value the property should match
Anmerkungen
Due to C4Script limitations, it is not possible to search for value nil with this function.
Für weitere Informationen und Beispiele zur Benutzung dieser Funktion sehe FindObjects.
Beispiele
FindObjects(Find_Distance(20), Find_Property("Collectible"))
Returns all nearby collectible objects.
FindObjects(Find_Property("Visibility", VIS_None))
Returns all invisible objects. Note that Visibility is a bitmap, but Find_Property compares the whole value.
Siehe auch: FindObjects