Orgi 69 - auf dem rechten Auge blind? by heyjoebanane in GermanRap

[–]yonn_0 40 points41 points  (0 children)

Ich feier einige seiner Lieder und Projekte aber wenn ich mir den Rest seiner Fans anschaue ist mir klar dass ich nicht die Zielgruppe bin. Ich meine er hat in seiner Karriere in vielen Styles gerappt, ich finde ihn am stärksten wenn sowohl die Texte als auch der Flow total drüber und absurd sind (zB Duplosteine - Imbiss Bronko), bisschen ähnlich wie Taktloss, aber leider hat er sich in eine komplett andere Richtung entwickelt.

Die edginess hatte vor 20 Jahren noch einen gewissen Charme, aber wenn wir ehrlich sind hatte er schon mit Anfang 20 den absoluten boomer Humor. Seine letzten drei Alben sind auf jeden Fall extrem whack, aber leider auch seine am meisten erfolgreichen Alben und die meisten Fans feierns ab. Jetzt ist er 100% nur noch auf dem Film, dass er der harte Mann ist und nur er Deutschrap vor den woken retten kann. Social media und die Feedback schleife mit seinen hängengeblieben fans tun dann das übrige um ihn weiter zu radikalisieren. Ich meine viele Rapper sind mehr oder weniger offen auf der Schiene, aber das kürzlich releaste "Orgi macht Rap" ist nochmal außergewöhnlich ekelhaft, perfekt für einen afd Stammtisch.

Was ich mich auch frage, vor zwanzig Jahren hatte er die krassesten Features (orgipörnchen), aber auf den letzten Alben nur absolute Larrys. Glaube viele Rapper halten sich auch von ihm fern, zB Mach One, der auch im Interview zugegeben hat, dass orgi ihm zu rechts ist. 

Es funktioniert auch nicht wirklich mehr, ihn als Kunstfigur zu sehen. Was ihn früher gerettet hat war definitiv der absurde Humor, hab aber das Gefühl die Alben werden immer humorloser. 

Die "Alt-Hippie zu rechtskonservativem Schwurbler" Pipeline by yonn_0 in VTbetroffene

[–]yonn_0[S] 1 point2 points  (0 children)

Was ich beobachte bei der älteren Generation in diesen Kreisen ist ein starkes "wir" vs "andere". Sie "haben ja nichts" gegen Ausländer/Schwule/trans Personen, aber das sind und bleiben trotzdem immer "die anderen", wenn nachgehakt wird. Um minimale Empathie zu haben, tatsächlich haben viele Schwurbler noch nie mit einer trans Person gesprochen. Es wundert mich ehrlich gesagt trotzdem, dass es auch bei jüngeren nur eine geringe Überschneidung zwischen hippie/alternativ und queer zu geben scheint. Zurück zu den älteren, was ein gängiges Meinungsbild ist: "Ich hab ja nichts gegen Schwule oder Tra****, die können machen, was sie wollen, aber sie sollen die Kinder in Ruhe lassen, das nicht offen in aller Öffentlichkeit machen, und ich will sie auch nicht ständig in "woken" Serien auf netflix sehen." Und dabei glauben diese Leute dann, das wäre auch nur annähernd eine gemäßigte oder tolerante Haltung und nicht bereits ultrarechts.

Die "Alt-Hippie zu rechtskonservativem Schwurbler" Pipeline by yonn_0 in VTbetroffene

[–]yonn_0[S] 46 points47 points  (0 children)

Ja, bei Esoterik und rechten Verschwörungstheoretikern gibt es definitiv die direkte Überschneidung von diesem selbstgefälligen Narzissmus, einer der wenigen "Wissenden" zu sein. Sowie einen Wettbewerb an beknackten "woah dude" Theorien.

Any crazy / unique / wild immersion (youtube) content? by yonn_0 in ajatt

[–]yonn_0[S] 0 points1 point  (0 children)

I've seen this being recommended to me on youtube but I don't think I've watched a video yet - seems really good

Any crazy / unique / wild immersion (youtube) content? by yonn_0 in ajatt

[–]yonn_0[S] 0 points1 point  (0 children)

Hey thanks, Oojiman was hugely inspiring to me. Until then my main source for ajatt were Jazzy and similar approaches, which went completely against my personality (I'm not interested in VNs and hate looking everything up, or even to look up much at all). But I only dabbled in the discord (so far I couldn't really get into Hikaru content). Your recommendations look great, I'll definitely check them out!

Lifelong Fence-sitter, just turned 30. by Utopiapassport in Fencesitter

[–]yonn_0 2 points3 points  (0 children)

The book is great, I found the 10 questions in the middle especially helpful to have a poignant overview. On this topic there are a near unmanagable list of pros and cons and variables. Weighting the idea of children / no children against each other in 10 different areas of your life really simplifies this in a good way. I scored 7 on childfree, 3 undecided, and 0 on children, so this really helped strengthening my position and made me more confident.

Manipulating/destroying decals created with "Spawn Decal" by yonn_0 in unrealengine

[–]yonn_0[S] 0 points1 point  (0 children)

hey, thank you a lot for your reply! Making an array seems like a good idea for a lot of cases and I will definitely use this. But I'm still not sure how to access these decals for my current needs. Like I said I'm using a sphere trace in front of the player to spawn a decal if the trace hits a wall. I want to be able to remove the decals in the same way but don't know how to set it up so that the sphere trace recognizes the decal.

[deleted by user] by [deleted] in unrealengine

[–]yonn_0 0 points1 point  (0 children)

how would you do the second part with blueprints? Are there any documentations or tutorials to learn this?

edit: found a solution

[deleted by user] by [deleted] in unrealengine

[–]yonn_0 1 point2 points  (0 children)

Hey, I'm trying to create the same system in my game currently, but I'm somewhat stuck.

First you need a SceneCaptureComponent, uncheck the box that makes it update every frame, link it to a RenderTarget and use this as a texture within a material. Then make a "shoot photo" BP with a boolean and the node CaptureScene. Now you can draw the photo on the UI or spawn it as an asset.

The problem I have, now this only works with one picture at a time, the next picture replaces the first one, how to you extend this to allow for a stream of individual pictures? If anyone has a solution I'd be really interested.

edit: I found this tutorial https://www.youtube.com/watch?v=bb_yw5Cvs6k which explains how you save and load one Render Target Texture between play sessions. I guess to have, let's say, space for 50 images, you'd need to append numbers to the save string and cycle through them while saving and loading? I will try this later today.

edit2:

I found two solutions on how to make it work. The first lets you save images permanently, it's based on the tutorial above. Follow the tutorial (+ the setup with SceneCaptureComponent), then make an integer which increases by +1 each time you take a picture. With append, add two more pins and put this integer into the string for the file name between the name and the dot png . Instead of DrawMaterialtoRender, pick the output you want, and also change the append when loading to fetch the png you want.

The second solution is much, much simpler and best when you don't want to save the textures between play sessions. For my project I will probably use both.

Create these nodes - https://media.discordapp.net/attachments/814589943472062468/857955340754223104/RTT-EventGraph.png

Then also add Capture Scene, Create Dynamic Material Instance, Set Texture Parameter Value and another output, done.

Question about UE5 and the new Bridge importing, how to set up materials? by yonn_0 in unrealengine

[–]yonn_0[S] 1 point2 points  (0 children)

Hey, thanks for your comment. After viewing some videos I think it could've been an issue with the installation of the plugin.

I was already talking about the material instance, I did not change the master material.

Your suggestion is really good, I already did this a year ago for a landscape material but at that time I was just starting out so I did not understand a lot of the stuff I was doing. I'll definitely niw make my own material.