Skip to content
Games-und-Lyrik_2022 Spieleprogrammierung für Anfänger

Games und Lyrik

Von Spielen inspiriert

  • Inhalt
  • Gamesübersicht
  • Games & Lyrik Podcast
  • Pressezentrum
  • Jobs
  • Veröffentlichte E-Books
  • Impressum
    • Datenschutzerklärung
    • Disclaimer
  • Toggle search form
  • In sound mind
    In sound mind News
  • Rockman EXE WS Cover
    Mega Man – Rockman EXE WS Games und Lyrik
  • Bridge Cover
    Bridge Kartenspiele
  • Antimatter Kid
    Antimatter Kid Games und Lyrik
  • Lost Twins 2: ein niedliches Puzzlespiel
    Lost Twins 2: ein niedliches Puzzlespiel Puzzle
  • Limbo Screenshot 2
    Limbo Adventure
  • Star Renegades Screenshot
    Star Renegades Games und Lyrik
  • Paradise Killer0
    Paradise Killer Adventure
Lichteffekte0

2D Licht und Schatten in Unity

Posted on 4. März 20224. März 2022 By Claudia Wendt Keine Kommentare zu 2D Licht und Schatten in Unity
2D Licht und Schatten in Unity

Du kannst für dein 2D-Spiel Lichteffekte einbauen. Dieser Beitrag beschäftigt sich deshalb mit 2D Licht und Schatten in Unity.

Inhaltsverzeichnis

  • Einführung in 2D-Lichteffekte in Unity
  • Anforderungen und Einrichtung bei 2D Licht und Schatten in Unity
  • Upgrade auf einen kompatiblen Shader
  • Aktualisierung vom Projekt
  • Weitere Light-Formen

Einführung in 2D-Lichteffekte in Unity

Bei Verwendung der Universal Render Pipeline (URP) mit ausgewähltem 2D-Renderer bietet die Light 2D-Komponente eine Möglichkeit, Sprites mit 2D-optimierter Beleuchtung zu versehen.

Du kannst zwischen verschiedenen 2D-Lichttypen wählen. Die Lichtarten im Paket sind:

Freeform

Sprite

Parametric

Point

Global

Lichttypen

Das Paket enthält das 2D-Renderer Datenasset, dass die Parameter für die verschiedenen Beleuchtungsstile enthält. Es erlaubt die bis zu vier benutzerdefinierten Lichtoptionen für dein Projekt zu verwenden.

Hinweis: Wenn du den experimentellen 2D-Renderer aktiviert hast (Menü: Grafikeinstellungen> Hinzufügen des 2D-Renderer-Assets unter Scriptable Render Pipeline-Einstellungen), haben einige der Optionen für das 3D-Rendering im URP-Asset keine Auswirkungen auf die endgültige App oder das Spiel.

Anforderungen und Einrichtung bei 2D Licht und Schatten in Unity

Du benötigst Unity 2019.2.0b1 oder später

und die Universal Render Pipeline version 6.7 oder höher.

Wie du den 2D Renderer konfigurierst:

1. Erstelle ein neues Pipeline-Asset, indem du im Menü Assets die Option Create> Rendern> Universelle Render-Pipeline> Pipeline-Asset auswählen

Lichttypen Pipeline Asset

2. Wähle als nächstes: Create–>Rendering–>Universal Render Pipeline–>2D-Renderer (Experimental)

Füge in das neue Asset in die Renderer-Liste ein.

Asset

Wähle Edit–>Project Settings und gehe in die Graphikkategorie.

Setze die Render Pipeline-Einstellungen auf den neuen Renderer.

Ziehe unter die Grafikeinstellungen der Projekteinstellungen die Lichteffekte.

Lichteffekte

Um die Sprites für die Beleuchtung vorzubereiten und sie mit 2D-Lichtern zu beleuchten wird der Sprite-Renderer-Komponente des Sprites ein Material mit einem Shader zugewiesen, der auf 2D-Lichter reagiert.

Ziehst du neue Sprites in die Szene, wird automatisch das Material auf “Sprite-Lit-Default” zugewiesen, sodass sie interagieren und von 2D-Lichtern beleuchtet erscheinen können.

Alternativ kannst du mit dem Shader Graph-Paket einen benutzerdefinierten Shader erstellen, der auf Lichter reagiert. Das Shader Graph-Paket kann über den Paket-Manager heruntergeladen werden.

Upgrade auf einen kompatiblen Shader

Gegebenenfalls musst du deine Materialien auf einen beleuchtungskompatiblen Shader aktualisieren. Die folgenden Funktionen aktualisieren eine Szene oder ein Projekt automatisch in einem Prozess. Aktualisierte Szenen oder Projekte können nicht auf den vorherigen Status zurückgesetzt werden.

Aktualisieren einer Szene

Um die aktuell geöffnete Szene zu aktualisieren, gehe auf zu Edit> Renderpipelinen> Universal Render Pipeine–>2D-Renderer> Szene auf 2D-Renderer upgraden

Material Upgraden

Dann wird dein Bildschirm schwarz:

Szene geupgradet

 

Aktualisierung vom Projekt

Um alle Prefabs und Materialien in Ihrem Projekt zu aktualisieren, gehe zu Bearbeiten> Pipeline rendern> UniversalRP–> 2D-Renderer> Projekt auf 2D-Renderer aktualisieren

Jetzt musst du Licht in deine Szene einfügen.

Klicke mit rechts ins Hierarchiefenster und wähle Light–>2D–>Das Licht, dass du einbauen möchtest.

Licht hinzufügen

Jetzt wird Licht in der Szene benötigt.

Im Hierarchiefenster klicke einmal rechts und wähle Light–>2D und die Lichtquelle, die du haben möchtest, z. B. Point Light. Die Lichtquelle erscheint in der Szene. Sie ist nicht sehr groß und kann mit dem Halbkreis am gelben Rand vergrößert werden. Der Hintergrund ist noch immer komplett schwarz.

Lichteffekte0

Die Sorting Layers auf die das Licht sich beziehen soll, müssen eingestellt werden.

Wähle unter Target Sorting Layers im Inspectorfenster “All” aus. Dann bezieht sich das Licht auf den Vorder- und Hintergrund. Der äußere und der innere Radius der Lichtquelle kann eingestellt werden.

Die Falloff Intensity gibt die Lichtintensität an. Im Bereich Color kannst du die Farbe des Lichtes einstellen. Alles was nicht beleuchtet wird, ist komplett schwarz.

Lights

Das Global Light beleuchtet alle ausgewählten Objekte. Auch hier können All Sorting Layers ausgewählt werden. Hier lassen sich auch Intentsität und Farbe einstellen. Wenn du das Licht zum Beispiel zu einem Gegenstand einer bestimmten Farbe bewegst und die Lichtfarbe anpasst und dies bei einem anderen Gegenstand ebenfalls macht, dann hat jedes Objekt seine eigene Farbe. Mit den Pfeilen bei der Lichtquelle kannst du außerdem den Winkel des Lichteinfalls anpassen. Auch hier gibt es einen inneren und einen äußeren Winkel.

Weitere Light-Formen

Sprite Lights erlauben es, Sprites hinzuzfügen, die eine Szene erleuchten. Sprite Cookies eignen sich beispielsweise dazu. Das Sprite beleuchtet dabei alle eingestellten Layers.

Ein Freeform Light kann nach Bedarf gemalt werden. Du definierst die Form des Lichtes selber. Mit Hilfe der angezeigten Punkte stellst du die Form des Lichts ein. Du kannst so viele Punkte wie du möchtest hinzufügen oder löschen. Auch bei diesem definierst du die beleuchteten Layers.

Das Parametric Light: Erlaubt Licht in bestimmten Formen zu erschaffen: Dreieck, Viereck, Fünfeck u.a. Die Anzahl der Seiten lässt sich dabei unter Sides im Inspectorfenster einstellen. Mit Angle Offset kann der Winkel eingestellt werden.

Der Hintergrund kann unter Background–>Sprite Editor–>Secondary Texture gewählt werden.

Diese wird als _NormalMap bezeichnet.

Normal Maps erzeugen zudem den Eindruck einer plastischen Oberfläche und wirft keine Schatten. Außerdem verdeckt sie keine Oberflächen.

Der Hintergrund, welcher als Normal Map agieren soll, wird in den Bereich Texture hineingezogen. Bestätige mit Apply.

Markiere außerdem die Lichter, die von der Normal Map beeinflusst werden sollen. Im Inspectorfenster wähle die Option Use as Normal Map. Die Verwendung einer Normal Map lässt 2D-Gegenstände 3-Dimensional wirken.

Übrigens: Wer das Partikelsystem nutzen will, kann nicht zeitgleich die 2D-Lichteffekte einsetzen. Momentan schließt sich beides aus.

Weiter geht es zur Spieleprogrammierung in Unity: Eine Übersicht

Hier geht es zur Webseite von Unity

Originally posted 2020-02-20 13:58:58.

  • twittern 
  • teilen 
  • RSS-feed 
  • merken 
  • teilen 
Post Views: 464
Spieleprogrammierung Tags:Unity

Beitrags-Navigation

Previous Post: Instruments of Destruction
Next Post: Radiangames

Related Posts

  • Directional-Light
    Grundlegendes zu Lichtformen in HDRP Spieleprogrammierung
  • Zusätzliche Post Processing Override Scenarios zur Szene hinzufügen Spieleprogrammierung
  • Greybox
    Mit Snaps Prototype Prefabs und Greybox einen Level erstellen Spieleprogrammierung
  • Unity Asset0 Spieleprogrammierung in Unity
    Was sind Assets? Spieleprogrammierung
  • Wie du einen Punktezähler per Script einbaust Spieleprogrammierung
  • Computer
    Was ist ein Template? Spieleprogrammierung

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.

Unsere Besucher

017325
Users Today : 21
Users Yesterday : 107
Total views : 56951
Powered By WPS Visitor Counter

  • Empfohlene Gaming-Seiten (5)
  • Games und Lyrik (1.335)
    • Action (95)
    • Adventure (99)
    • Blogs (2)
    • Brettspiele (4)
    • Ecke der verlorenen Spiele (2)
    • Geschicklichkeit (17)
    • Horror (4)
    • Kartenspiele (1)
    • Musikgames (1)
    • Puzzle (18)
    • Quiz (2)
    • RPG (29)
    • Shooter (5)
    • Simulation (20)
    • Sport (32)
    • Strategie (64)
    • Survival (12)
    • Visual Novel (4)
    • Wimmelbild (4)
  • News (53)
  • Spieleentwickler (60)
  • Spieleprogrammierung (97)
Subscribe

Seiten

  • Datenschutzerklärung
  • Disclaimer
  • Games & Lyrik Podcast
  • Gamesübersicht
  • Impressum
  • Jobs
  • Pressezentrum
  • Veröffentlichte E-Books

Deaktivierung durchgeführt! Ihre Besuche auf dieser Webseite werden von der Webanalyse nicht mehr 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.

de German
af Afrikaanssq Albanianam Amharicar Arabichy Armenianaz Azerbaijanieu Basquebe Belarusianbn Bengalibs Bosnianbg Bulgarianca Catalanceb Cebuanony Chichewazh-CN Chinese (Simplified)zh-TW Chinese (Traditional)co Corsicanhr Croatiancs Czechda Danishnl Dutchen Englisheo Esperantoet Estoniantl Filipinofi Finnishfr Frenchfy Frisiangl Galicianka Georgiande Germanel Greekgu Gujaratiht Haitian Creoleha Hausahaw Hawaiianiw Hebrewhi Hindihmn Hmonghu Hungarianis Icelandicig Igboid Indonesianga Irishit Italianja Japanesejw Javanesekn Kannadakk Kazakhkm Khmerko Koreanku Kurdish (Kurmanji)ky Kyrgyzlo Laola Latinlv Latvianlt Lithuanianlb Luxembourgishmk Macedonianmg Malagasyms Malayml Malayalammt Maltesemi Maorimr Marathimn Mongolianmy Myanmar (Burmese)ne Nepalino Norwegianps Pashtofa Persianpl Polishpt Portuguesepa Punjabiro Romanianru Russiansm Samoangd Scottish Gaelicsr Serbianst Sesothosn Shonasd Sindhisi Sinhalask Slovaksl Slovenianso Somalies Spanishsu Sudanesesw Swahilisv Swedishtg Tajikta Tamilte Teluguth Thaitr Turkishuk Ukrainianur Urduuz Uzbekvi Vietnamesecy Welshxh Xhosayi Yiddishyo Yorubazu Zulu

Du suchst ein Spiel?

Neueste Beiträge

  • Die Varsav Game Studios
  • Memories Retold
  • Hard West 2: Release 2022
  • Giants Uprising
  • The Whispered World

Action Adventure Capcom Daedalic Daedalic Entertainment Deck 13 Devcom 2020 Ecke der verlorenen Spiele Escape Room Gamescom 2019 Gamescom 2020 Gamescom 2021 GB GBA GBC Haemimont Games Haiku Games Horror Jump & Run Kalypso Media Mega Man N64 NDS NES Nintendo DS Nintendo Switch PC PS1 PS2 PS3 PS4 PS5 PSP Rareware Rennspiel RPG Sega Shooter SNES Strategie Switch Unity Visual Novel Xbox XBox One

  • Was ist ein Sprite Renderer? 14 views
  • TextMesh Pro 14 views
  • 2D Licht und Schatten in Unity 13 views
  • Die Varsav Game Studios 10 views
  • Ace Combat Advance 9 views
  • Superheroes Academy 8 views
  • Arbeiten mit dem Memory Profiler 8 views
  • Balloon Monster 8 views
  • Velvetist – The City of Machine Guns 8 views
  • Hard West 2: Release 2022 8 views
  • Mai 2022 (36)
  • April 2022 (77)
  • März 2022 (95)
  • Februar 2022 (71)
  • Januar 2022 (71)
  • Dezember 2021 (60)
  • November 2021 (63)
  • Oktober 2021 (65)
  • September 2021 (65)
  • August 2021 (88)
  • Juli 2021 (28)
  • Juni 2021 (60)
  • Mai 2021 (48)
  • April 2021 (42)
  • Februar 2021 (82)
  • Januar 2021 (56)
  • Dezember 2020 (56)
  • November 2020 (56)
  • Oktober 2020 (56)
  • September 2020 (59)
  • August 2020 (64)
  • Juli 2020 (52)
  • Juni 2020 (50)
  • Mai 2020 (60)
  • April 2020 (60)
  • März 2020 (28)
  • You Suck at Parking
    You Suck at Parking Games und Lyrik
  • We are Screwed
    We are screwed! Games und Lyrik
  • Mega Man - Maverick Hunter X Cover
    Mega Man Maverick Hunter X Games und Lyrik
  • Trek to Yomi Cover
    Trek to Yomi-Trailer News
  • Unforeseen Incidents
    Unforeseen Incidents Games und Lyrik
  • Blair Witch Cover
    Blair Witch VR Adventure
  • Aritana and the Harpy’s Feather
    Aritana and the Harpy’s Feather Action
  • Resident Evil - The Darkside Chronicles Cover
    Resident Evil – The Darkside Chronicles Games und Lyrik

Copyright © 2022 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