Skip to content
Versunken

Games und Lyrik

Von Spielen inspiriert

  • Inhalt
  • Gamesübersicht
  • Games & Lyrik Podcast
  • Pressezentrum und Media-Kit
  • Jobs
  • Veröffentlichte E-Books
  • Impressum
    • Datenschutzerklärung
    • Disclaimer
  • Cookie-Richtlinie (EU)
  • Toggle search form

Unity – Wie du deine Gegner bewegst

Posted on 10. Dezember 202014. Dezember 2022 By Claudia Wendt Keine Kommentare zu Unity – Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst

Erstelle zuerst ein Objekt, das als Gegner fungiert. Gebe deinem Gegner den Tag Enemy.

 

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 11

Wenn Gegner und Figur kollidieren, ist ein Tag sinnvoll, da mit dem Script vermittelt werden kann, das nur Objekte mit dem Enemy-Tag als Gegner relevant sind.

Erstelle ein C#-Script mit dem Namen „Enemy“.

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 12

Öffne das Script in Visual Studio. Zuerst benötigt der Gegner eine Rigidbody-Componente:

private Rigidbody2D Rigidbody;

Jetzt benötigen wir die Awake-Funktion. Sie wird einige Zeit vor dem Start aktiv.

void Awake ( )

{

Rigidbody = GetComponent<Rigidbody2D>();

}

Jetzt füge dem Gegner eine Rigidbody2D-Komponente in Unity hinzu.

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 13

Ziehe jetzt das neue Script auf den Gegner.

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 14

Die Bewegung vom Gegner

Jetzt soll der Gegner sich basierend auf einer Geschwindigkeit in eine bestimmte Richtung bewegen:

Wir benötigen: private float speed

public void Move (Vector 2 direction)

{

body.velocity = new Vector2(direction.x * speed, body.velocity.y);

}

Damit das private float spped-Feld im Inspektor erscheint, setzt du davor: [SerializeField]

Die Richtung des Gegners soll wechseln:

Wir benötigen:

private Vector2 movementDirection;

Jetzt wird Folgendes festgelegt:

movementDirection = direction;

Die direction.x tauschst du durch movementDirection.x aus.

Für den Richtungswechseln benötigst du die Update-Funktion:

Move(movementDirection);

Nach einer Bewegung in eine Richtung, kehrt der Gegner in die andere Richtung zurück.

Die Kollision mit Gegnern

Weiterhin muss der Gegner eine „Kollision entdecken“.

private void OnCollisionEnter2D(Collision2D collision)

{

if (collision.gameObject.CompareTag(„Enemy“))

{

movementDirection *= -1f;

}

Als movementDirection in der Awake-Funktion gib folgendes an:

movementDirection = Vector2.right;

Weiterhin benötigt er einen Collider. Füge einen passenden 2D-Collider hinzu.

Füge einen 2. kleineren Collider am oberen Abschnitt des Gegners hinzu. Der 2. Collider soll zugleich ein Auslöser sein. Der Collider soll den Gegner beseitigen, wenn der Spieler daraufspringt.

Das Spawnen von Gegnern

Erstelle mit dem Rechtsklick im Hierarchiefenster ein leeres Objekt und benenne es als Spawner.

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 15

Die Gegner erscheinen, je nach Richtung des Spawners. Als nächstes benötigen wir ein SpawnerScript.

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 16

Darin definierst du das Erscheinen der Gegner.

Zuerst benötigen wir dafür:

[SerializeField]

Durch das SerializeField erschienen die Prefabs direkt beim Spawner.

private Enemy[ ] enemies;

Du brauchst außerdem die Variable:

[SerializeField]

private float spawnTimeDelay, startSpawnDelay;

Damit legen wir die Spawnzeit und die Abstände zwischen dem Spawning fest.

Außerdem benötigen wir:

public bool completed;

Es legt den letzten Gegner für den Spawner fest. Die „Aufsicht“ über die Spawner hat der GameManger. Der completed-Abschnitt legt fest, das der Level abgeschlossen ist, wenn keine Gegner mehr in der Szene laufen und die Spawner aller Gegner in den Level sandten.

Jetzt wird eine Coroutine benötigt, für das Spawnen der Gegner.

Die Gegner sollen sich außerdem in eine bestimmte Richtung bewegen.

Zuletzt soll überprüft werden, ob das Spawning abgeschlossen ist.

Für die Coroutine ist ein IEnumorator notwendig. Unity bearbeitet Coroutines im Hintergrund. Zudem finden sie in jedem Frame statt:

private IEnumerator Spawn( )

Jetzt wird dem System gesagt, das es eine bestimmte Anzahl an Sekunden warten soll, bis der Gegner erscheint:

yield return new WaitForSeconds ( );

Wir warten auf startSpawnDeley:

yield return new WaitForSeconds (startSpawnDelay);

Für die Zeitangabe benötigen wir:

for (int i = 0; i < lenght; i++)

Jeder Gegner soll eine bestimmte Anzahl, nach einer bestimmten Zeit respawnen.

Deswegen kommt dazu: enemies.Lenght:

for (int i = 0; i < enemies.Lenght; i++)

Jetzt muss ein Verweis zu dem Gegner erstellt werden:

Enemy enemyInstance = Instantiate(enemies[i], transform.position);

Transform.position sagt dem System, das der Gegner beim Spawner erscheinen soll.

Quaternion.identity bezieht sich auf die Rotation.

Enemy enemyInstance = Instantiate(enemies[i], transform.position, Quaternion.identity);

Die Bewegung des Gegners lässt sich näher definieren:

enemyInstance.Move(transform.right);

Wir fügen yield return new WaitforSeconds(SpawnTimeDelay); ein weiteres Mal hinzu, diesmal mit SpawnTimeDelay.

Das bedeutet, jedes Mal, wenn ein Gegner erscheint, wartet Unity diese spezielle Zeit, bis zum nächsten Spawning.

Zuletzt muss das System überprüfen, ob das Spawning abgeschlossen ist:

completed = i >=enemies.Lenght – 1;

Zuletzt muss die Coroutnie gestartet werden:

void Start()

{

 StartCoroutine(Spawn());

}

Das Endscript für das Spawning sollte folgendermaßen aussehen:

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 17

Im angehängten Spawnerscript kannst du die Spawnhäufigkeit jetzt einstellen:

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 18

Per Drag & Drop kannst du die Gegner jetzt ins Spawner-Script ziehen:

Unity - Wie du deine Gegner bewegst
Unity - Wie du deine Gegner bewegst 19
Weitersagen:
Games und Lyrik

Beitrags-Navigation

Previous Post: Emma at the Farm
Next Post: Age of Empires 2: Age of Kings

Related Posts

  • Chuugoku Senseijutsu Cover
    Chuugoku Senseijutsu Games und Lyrik
  • Bundle for Ukraine
    Über 600 Spiele für 10$! – Bundle for Ukraine auf Itch Games und Lyrik
  • Ein Sommernachtstraum Cover
    The Chronicles of Shakespeare – Ein Sommernachtstraum Games und Lyrik
  • Chapeau Screenshot
    Chapeau Games und Lyrik
  • Resident Evil Nemesis Screenshot3
    Resident Evil 3 Nemesis Games und Lyrik
  • The Wizard
    The Wizard Games und Lyrik

Schreibe einen Kommentar Antworten abbrechen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.

  • Games und Lyrik (2.071)
    • Adventure (333)
    • Ecke der verlorenen Spiele (2)
    • Rollenspiele (89)
    • Shooter (332)
    • Simulation (1)
    • Sport (94)
    • Strategie (173)
  • Lyrik (109)
  • Spieleentwickler (188)
  • Spieleprogrammierung (107)

Opt-out abgeschlossen; Ihre Besuche auf dieser Webseite werden nicht vom Webanalysetool erfasst. Bitte beachten Sie, dass auch der Matomo-Deaktivierungs-Cookie dieser Webseite gelöscht wird, wenn Sie die in Ihrem Browser abgelegten Cookies entfernen. Außerdem müssen Sie, wenn Sie einen anderen Computer oder einen anderen Webbrowser verwenden, die Deaktivierungsprozedur nochmals absolvieren.

Sie haben die Möglichkeit zu verhindern, dass von Ihnen hier getätigte Aktionen analysiert und verknüpft werden. Dies wird Ihre Privatsphäre schützen, aber wird auch den Besitzer daran hindern, aus Ihren Aktionen zu lernen und die Bedienbarkeit für Sie und andere Benutzer zu verbessern.

Die Tracking opt-out Funktion benötigt aktivierte Cookies.

  • Adventure
  • Ecke der verlorenen Spiele
  • Games und Lyrik
  • Lyrik
  • Rollenspiele
  • Shooter
  • Simulation
  • Spieleentwickler
  • Spieleprogrammierung
  • Sport
  • Strategie
  • Zelda-Community-Ranking - Euer liebstes Zelda-Spiel ist selbst nach 25 Jahren noch unübertroffen
    Eine so beliebte Spielreihe wie The Legend of Zelda, die schon fast 30 Jahre auf dem Buckel hat, bietet jede Menge tolle Spiele. Aber welches davon findet ihr am besten?
  • Steam - Zum Wochenende sind 10 coole Spiele stark reduziert
    Wir haben 10 coole Sale-Empfehlungen bei Steam für euch herausgesucht.
  • Stellenabbau bei Firaxis - Eines der besten Entwicklerstudios für Strategiespiele entlässt haufenweise Mitarbeiter
    Kurz nach der Ankündigung von Civilization 7 entlässt Firaxis 30 Angestellte. Die exakten Gründe sind unklar, aber es gibt Hinweise.
  • Netflix - Streaming-Riese holt sich für neues Blockbuster-Spiel reihenweise Top-Entwickler ins Haus
    Netflix arbeitet an einem neuen AAA-Titel. Jetzt schnappt sich der Streaming-Riese dafür auch einen God of War-Entwickler. Was ist über das Projekt bekannt?
  • Diablo 4 - Maurice startet seinen eigenen YouTube-Kanal und knöpft sich direkt den Shop vor
    Unser hauseigener Totenbeschwörer Maurice nutzt den Diabolo-Release, um seinen eigenen YouTube-Kanal aus dem Grab zu erheben.
  • Hidden Ruins - Adventure Escape
    Hidden Ruins – Adventure Escape Adventure
  • Crusader Kings 3
    Crusader Kings 3 jetzt auf Konsole erhältlich Games und Lyrik
  • Monster Hotel
    Monster Hotel Strategie
  • Detective Case and Clown Bot in - Murder in the Hotel Lisbon
    Detective Case and Clown Bot in: Murder in the Hotel Lisbon Games und Lyrik
  • Zombie Night Terror Cover
    Zombie Night Terror: Eine urkomische Hommage an das Horrorgenre Strategie
  • Two Point Campus Cover
    Two Point Campus Strategie
  • Tamagotlib
    Tamagotlib Games und Lyrik
  • Xandata
    Project Xandata Games und Lyrik

Copyright © 2023 Games und Lyrik.

Powered by PressBook News Dark theme

Cookie-Einstellungen
Diese Webseite benutzt Cookies um die Nutzererfahrung zu verbessern. Diese Cookies können Sie hier ausschalten.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Cookie-Einstellungen / Cookie settingsAkzeptieren / ACCEPT
Privatsphären- und Cookie-Einstellungen

Informationen zu Cookies / Privacy Overview

Informationen zu Cookies / Privacy Overview


Diese Webseite benutzt Cookies um die Funktion und die Nutzererfahrung zu verbessern. Es gibt zwei Arten von Cookies: Die notwendigen im Browser gespeichert und sind wichtig für die korrekte Funktion der Webseite. Die nicht notwendigen oder auch Drittanbieter-Cookies, die zum Einsatz kommen, dienen zur Analyse und zeigen uns die Benutzung dieser Webseite. Diese Cookies werden ebenfalls im Browser gespeichert aber nur, wenn Sie es ausdrücklich erlauben. Sie haben im Folgenden die Möglichkeit, diese Drittanbieter-Cookies zu verbieten. Das Abschalten dieser  Cookies kann das Verhalten der Webseite beeinflussen.


This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.

necessary
immer aktiv
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
CookieDauerBeschreibung
AWSALBCORS7 daysThis cookie is managed by Amazon Web Services and is used for load balancing.
client_id10 yearsThis cookie is used for passing authentication information.
cookielawinfo-checkbox-advertisement1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Advertisement" category .
cookielawinfo-checkbox-analytics1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Analytics" category .
cookielawinfo-checkbox-functional1 yearThe cookie is set by the GDPR Cookie Consent plugin to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Necessary" category .
cookielawinfo-checkbox-non-necessary1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Non-necessary" category .
cookielawinfo-checkbox-others1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to store the user consent for cookies in the category "Others".
cookielawinfo-checkbox-performance1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to store the user consent for cookies in the category "Performance".
CookieLawInfoConsent1 yearRecords the default button state of the corresponding category & the status of CCPA. It works only in coordination with the primary cookie.
ezCMPCCS1 yearEzoic sets this cookie to track when a user consents to statistics cookies.
Nicht notwendige
Alle Cookies, die für die korrekte Funktion der Webseite nicht unmittelbar notwendig sind und genutzt werden, um persönliche Nutzerdaten per Analyse, Werbung oder anderen eingebetteten Inhalt zu sammeln, werden als nicht notwendige Cookies bezeichnet. Es ist zwingend erforderlich die Zustimmung des Nutzers / der Nutzerin einzuholen, bevor diese Cookies zur Anwendung kommen. Wird die Einwilligung zur Nutzung der Cookies nicht erteilt, werden sie nicht angewendet und nur die notwendigen Cookies sind aktiv.
CookieDauerBeschreibung
__qca1 year 26 daysThe __qca cookie is associated with Quantcast. This anonymous data helps us to better understand users' needs and customize the website accordingly.
eudssessionThis cookie is set by Rocket Fuel for targeted advertising so that users are shown relevant ads.
i10 yearsThis cookie is set by OpenX to record anonymized user data, such as IP address, geographical location, websites visited, ads clicked by the user etc., for relevant advertising.
IDE1 year 24 daysGoogle DoubleClick IDE cookies are used to store information about how the user uses the website to present them with relevant ads and according to the user profile.
mc1 year 1 monthQuantserve sets the mc cookie to anonymously track user behaviour on the website.
rud1 year 24 daysThe rud cookie is owned by Rocketfuel and registers user data, such as IP address, location, etc. for the purpose of optimising ad display.
rudssessionThis cookie is owned by Rocketfuel and collects anonymous user data to target audiences and deliver personalized ads.
test_cookie15 minutesThe test_cookie is set by doubleclick.net and is used to determine if the user's browser supports cookies.
VISITOR_INFO1_LIVE5 months 27 daysA cookie set by YouTube to measure bandwidth that determines whether the user gets the new or old player interface.
YSCsessionYSC cookie is set by Youtube and is used to track the views of embedded videos on Youtube pages.
yt-remote-connected-devicesneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt-remote-device-idneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt.innertube::nextIdneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
yt.innertube::requestsneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
Funktionelle
Funktionelle Cookies werden benutzt, um bestimmte Funktionen wie die Teilung von Informationen auf Plattformen der sozialen Medien, Sammlung von Rückmeldungen und andre Drittanbieterfunktionen einsetzen zu können.
CookieDauerBeschreibung
__cf_bm30 minutesThis cookie, set by Cloudflare, is used to support Cloudflare Bot Management.
pll_language1 yearThe pll _language cookie is used by Polylang to remember the language selected by the user when returning to the website, and also to get the language information when not available in another way.
Leistungsanalyse
Leistungsanalyse-Cookies werden eingesetzt um die wichtigsten Leistungsaspekte zu analysieren und zu verstehen. Dies trägt dazu bei, die Webseite kontinuierlich zu verbessern und so den Besuchern eine gute Nutzererfahrung zu bieten.
CookieDauerBeschreibung
AWSALB7 daysAWSALB is an application load balancer cookie set by Amazon Web Services to map the session to the target.
ezds7 yearsThe ezds cookie is set by the provider Ezoic, and is used for storing the pixel size of the user's browser, to personalize user experience and ensure content fits.
ezoab_10342 hoursEzoic uses this cookie to split test different features and functionality.
ezohw7 yearsThe ezohw cookie is set by the provider Ezoic, and is used for storing the pixel size of the user's browser, to personalize user experience and ensure content fits.
ymex1 yearYandex sets this cookie to collect information about the user behaviour on the website. This information is used for website analysis and for website optimisation.
yuidss1 yearYandex stores this cookie in the user's browser in order to recognize the visitor.
Analytik
Analytische Cookies werden benutzt um zu verstehen, auf welche Art und Weise Besucher mit dieser Webseite interagieren. Diese Cookies helfen Informationen über Anzahl der Besucher, Absprungrate (Anzahl der Besucher,, die eine Webseite Besuchen und sie gleich wieder verlassen), Ursprungsland des Besuchers, usw. zu erhalten.
CookieDauerBeschreibung
__gads1 year 24 daysThe __gads cookie, set by Google, is stored under DoubleClick domain and tracks the number of times users see an advert, measures the success of the campaign and calculates its revenue. This cookie can only be read from the domain they are set on and will not track any data while browsing through other sites.
_gu1 monthThis cookie is set by the provider Getsitecontrol. This cookie is used to distinguish the users.
_ym_d1 yearYandex sets this cookie to store the date of the users first site session.
_ym_isad20 hoursYandex sets this cookie to determine if a visitor has ad blockers.
_ym_uid1 yearYandex sets this cookie to identify site users.
CONSENT2 yearsYouTube sets this cookie via embedded youtube-videos and registers anonymous statistical data.
eud1 year 24 daysThis cookie is owned by Rocketfuel and collects anonymous user data to target audiences and deliver personalized ads.
ezepvv1 dayThis cookie is set by the provider Ezoic to track what pages the user has viewed.
ezoadgid_103430 minutesEzoic uses this cookie to record an id for the user's age and gender category.
ezoref_10342 hoursEzoic uses this cookie to store the referring domain, i.e the website the user was on, before he came to the current website.
ezouspvasessionThe ezouspva cookie is set by the provider Ezoic and is used to track the number of pages a user has visited all time.
ezouspvvsessionThe ezouspvv cookie is set by the provider Ezoic and is used to track the number of pages a user has visited all time.
UserID13 monthsThis cookie is set by ADITION Technologies AG, as a unique and anonymous ID for the visitor of the website, to identify unique users across multiple sessions.
yabs-sidsessionYandex sets this cookie to store the session ID.
yandexuid1 yearYandex sets this cookie to identify site users.
Werbung
Werbungs-Cookies werden benutzt um Besuchern relevante Werbungen und Vermarktungskampanien anzuzeigen. Diese Cookies verfolgen die Besucher beim Besuch einer Webseite und sammeln Informationen mit deren Hilfe sie angepasste Werbungen einblenden.
CookieDauerBeschreibung
__qca1 year 26 daysThe __qca cookie is associated with Quantcast. This anonymous data helps us to better understand users' needs and customize the website accordingly.
eudssessionThis cookie is set by Rocket Fuel for targeted advertising so that users are shown relevant ads.
i10 yearsThis cookie is set by OpenX to record anonymized user data, such as IP address, geographical location, websites visited, ads clicked by the user etc., for relevant advertising.
IDE1 year 24 daysGoogle DoubleClick IDE cookies are used to store information about how the user uses the website to present them with relevant ads and according to the user profile.
mc1 year 1 monthQuantserve sets the mc cookie to anonymously track user behaviour on the website.
rud1 year 24 daysThe rud cookie is owned by Rocketfuel and registers user data, such as IP address, location, etc. for the purpose of optimising ad display.
rudssessionThis cookie is owned by Rocketfuel and collects anonymous user data to target audiences and deliver personalized ads.
test_cookie15 minutesThe test_cookie is set by doubleclick.net and is used to determine if the user's browser supports cookies.
VISITOR_INFO1_LIVE5 months 27 daysA cookie set by YouTube to measure bandwidth that determines whether the user gets the new or old player interface.
YSCsessionYSC cookie is set by Youtube and is used to track the views of embedded videos on Youtube pages.
yt-remote-connected-devicesneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt-remote-device-idneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt.innertube::nextIdneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
yt.innertube::requestsneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
Sonstige
Zu den sonstigen unkategorisierten Cookies zählen jene, die zwar analysiert wurden, aber noch keiner Kategorie zugeordnet werden konnten.
CookieDauerBeschreibung
_auid1 yearNo description available.
active_template::3326192 days

No description

appReleasesessionNo description available.
BACKENDIDsessionNo description available.
dspid1 yearNo description available.
ezoab_3326192 hoursNo description
ezoadgid_33261930 minutesNo description
ezopvc_33261930 minutesNo description
ezoref_3326192 hoursNo description
ezosuibasgeneris-11 yearNo description
ezovid_33261930 minutesNo description
ezovuuid_33261930 minutesNo description
ezovuuidtime_3326192 daysNo description
ezux_lpl_3326191 yearNo description
f_0013 monthsNo description
g_0011 dayNo description
gt_auto_switch1 monthNo description available.
lp_33261930 minutesNo description
mts_id9 years 10 months 8 daysNo description available.
mts_id_last_sync9 years 10 months 8 daysNo description available.
pvc_visits[0]1 yearThis cookie is created by post-views-counter. This cookie is used to count the number of visits to a post. It also helps in preventing repeat views of a post by a visitor.
srpsessionNo description available.
userId5 months 27 daysNo description
Notwendige
Notwendige Cookies sind für die korrekte Funktion der Webseite unerlässlich. Diese Kategorie enthält nur Cookies, die grundlegende Funktionalitäten und Sicherheitsfunktionen der Webseite ermöglichen. Diese Cookies speichern keine persönlichen Daten.
CookieDauerBeschreibung
AWSALBCORS7 daysThis cookie is managed by Amazon Web Services and is used for load balancing.
client_id10 yearsThis cookie is used for passing authentication information.
cookielawinfo-checkbox-advertisement1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Advertisement" category .
cookielawinfo-checkbox-analytics1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Analytics" category .
cookielawinfo-checkbox-functional1 yearThe cookie is set by the GDPR Cookie Consent plugin to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Necessary" category .
cookielawinfo-checkbox-non-necessary1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Non-necessary" category .
cookielawinfo-checkbox-others1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to store the user consent for cookies in the category "Others".
cookielawinfo-checkbox-performance1 yearSet by the GDPR Cookie Consent plugin, this cookie is used to store the user consent for cookies in the category "Performance".
CookieLawInfoConsent1 yearRecords the default button state of the corresponding category & the status of CCPA. It works only in coordination with the primary cookie.
ezCMPCCS1 yearEzoic sets this cookie to track when a user consents to statistics cookies.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
CookieDauerBeschreibung
__qca1 year 26 daysThe __qca cookie is associated with Quantcast. This anonymous data helps us to better understand users' needs and customize the website accordingly.
eudssessionThis cookie is set by Rocket Fuel for targeted advertising so that users are shown relevant ads.
i10 yearsThis cookie is set by OpenX to record anonymized user data, such as IP address, geographical location, websites visited, ads clicked by the user etc., for relevant advertising.
IDE1 year 24 daysGoogle DoubleClick IDE cookies are used to store information about how the user uses the website to present them with relevant ads and according to the user profile.
mc1 year 1 monthQuantserve sets the mc cookie to anonymously track user behaviour on the website.
rud1 year 24 daysThe rud cookie is owned by Rocketfuel and registers user data, such as IP address, location, etc. for the purpose of optimising ad display.
rudssessionThis cookie is owned by Rocketfuel and collects anonymous user data to target audiences and deliver personalized ads.
test_cookie15 minutesThe test_cookie is set by doubleclick.net and is used to determine if the user's browser supports cookies.
VISITOR_INFO1_LIVE5 months 27 daysA cookie set by YouTube to measure bandwidth that determines whether the user gets the new or old player interface.
YSCsessionYSC cookie is set by Youtube and is used to track the views of embedded videos on Youtube pages.
yt-remote-connected-devicesneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt-remote-device-idneverYouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt.innertube::nextIdneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
yt.innertube::requestsneverThis cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
non-necessary
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
CookieDauerBeschreibung
_auid1 yearNo description available.
active_template::3326192 days

No description

appReleasesessionNo description available.
BACKENDIDsessionNo description available.
dspid1 yearNo description available.
ezoab_3326192 hoursNo description
ezoadgid_33261930 minutesNo description
ezopvc_33261930 minutesNo description
ezoref_3326192 hoursNo description
ezosuibasgeneris-11 yearNo description
ezovid_33261930 minutesNo description
ezovuuid_33261930 minutesNo description
ezovuuidtime_3326192 daysNo description
ezux_lpl_3326191 yearNo description
f_0013 monthsNo description
g_0011 dayNo description
gt_auto_switch1 monthNo description available.
lp_33261930 minutesNo description
mts_id9 years 10 months 8 daysNo description available.
mts_id_last_sync9 years 10 months 8 daysNo description available.
pvc_visits[0]1 yearThis cookie is created by post-views-counter. This cookie is used to count the number of visits to a post. It also helps in preventing repeat views of a post by a visitor.
srpsessionNo description available.
userId5 months 27 daysNo description
performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
CookieDauerBeschreibung
AWSALB7 daysAWSALB is an application load balancer cookie set by Amazon Web Services to map the session to the target.
ezds7 yearsThe ezds cookie is set by the provider Ezoic, and is used for storing the pixel size of the user's browser, to personalize user experience and ensure content fits.
ezoab_10342 hoursEzoic uses this cookie to split test different features and functionality.
ezohw7 yearsThe ezohw cookie is set by the provider Ezoic, and is used for storing the pixel size of the user's browser, to personalize user experience and ensure content fits.
ymex1 yearYandex sets this cookie to collect information about the user behaviour on the website. This information is used for website analysis and for website optimisation.
yuidss1 yearYandex stores this cookie in the user's browser in order to recognize the visitor.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
CookieDauerBeschreibung
_auid1 yearNo description available.
active_template::3326192 days

No description

appReleasesessionNo description available.
BACKENDIDsessionNo description available.
dspid1 yearNo description available.
ezoab_3326192 hoursNo description
ezoadgid_33261930 minutesNo description
ezopvc_33261930 minutesNo description
ezoref_3326192 hoursNo description
ezosuibasgeneris-11 yearNo description
ezovid_33261930 minutesNo description
ezovuuid_33261930 minutesNo description
ezovuuidtime_3326192 daysNo description
ezux_lpl_3326191 yearNo description
f_0013 monthsNo description
g_0011 dayNo description
gt_auto_switch1 monthNo description available.
lp_33261930 minutesNo description
mts_id9 years 10 months 8 daysNo description available.
mts_id_last_sync9 years 10 months 8 daysNo description available.
pvc_visits[0]1 yearThis cookie is created by post-views-counter. This cookie is used to count the number of visits to a post. It also helps in preventing repeat views of a post by a visitor.
srpsessionNo description available.
userId5 months 27 daysNo description
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
CookieDauerBeschreibung
__gads1 year 24 daysThe __gads cookie, set by Google, is stored under DoubleClick domain and tracks the number of times users see an advert, measures the success of the campaign and calculates its revenue. This cookie can only be read from the domain they are set on and will not track any data while browsing through other sites.
_gu1 monthThis cookie is set by the provider Getsitecontrol. This cookie is used to distinguish the users.
_ym_d1 yearYandex sets this cookie to store the date of the users first site session.
_ym_isad20 hoursYandex sets this cookie to determine if a visitor has ad blockers.
_ym_uid1 yearYandex sets this cookie to identify site users.
CONSENT2 yearsYouTube sets this cookie via embedded youtube-videos and registers anonymous statistical data.
eud1 year 24 daysThis cookie is owned by Rocketfuel and collects anonymous user data to target audiences and deliver personalized ads.
ezepvv1 dayThis cookie is set by the provider Ezoic to track what pages the user has viewed.
ezoadgid_103430 minutesEzoic uses this cookie to record an id for the user's age and gender category.
ezoref_10342 hoursEzoic uses this cookie to store the referring domain, i.e the website the user was on, before he came to the current website.
ezouspvasessionThe ezouspva cookie is set by the provider Ezoic and is used to track the number of pages a user has visited all time.
ezouspvvsessionThe ezouspvv cookie is set by the provider Ezoic and is used to track the number of pages a user has visited all time.
UserID13 monthsThis cookie is set by ADITION Technologies AG, as a unique and anonymous ID for the visitor of the website, to identify unique users across multiple sessions.
yabs-sidsessionYandex sets this cookie to store the session ID.
yandexuid1 yearYandex sets this cookie to identify site users.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
CookieDauerBeschreibung
__cf_bm30 minutesThis cookie, set by Cloudflare, is used to support Cloudflare Bot Management.
pll_language1 yearThe pll _language cookie is used by Polylang to remember the language selected by the user when returning to the website, and also to get the language information when not available in another way.
SPEICHERN & AKZEPTIEREN
Unterstützt von CookieYes Logo