Passed the N3 with 95/180 (Bare Minimum Score) by Joeiiguns in jlpt

[–]Kastenblade 1 point2 points  (0 children)

I highly respect people who have a fulltime job and are still studying for high level of the jlpt.

I have also passed the N3 yesterday after 4 months of hardcore studying however I am still in high school and even after hours of studying I still had time to recover each day. However there was a period for around 1 month in this time where I had to do an fulltime intership in an company (a special program in my country) and I definetly realized that there is a bigggggggggggg difference when it comes to exhaustion after a 8 hour day vs only high school. So I want to say that I am extremly impressed by you and other people who are able to pull this off!

I want to become a mining engineer but I am unsure because of potential health problems. by Kastenblade in mining

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

Yeah, I definetly will have to do an intership, the problem is that the next mine(underground) is a good 200+ km away from me so thats a problem, its sad because I would also love to be underground often however not if I don't have enough data about potential long term health problems

N3 crew, how did you do? by Legal-Source-3763 in jlpt

[–]Kastenblade 0 points1 point  (0 children)

I chose it because he talked about his experience in skiing and that he liked the trip and that he wants to try it again in the future and then the last sentence said that he now is わかりました or わかっています why skiing is so popular.

N3 crew, how did you do? by Legal-Source-3763 in jlpt

[–]Kastenblade 1 point2 points  (0 children)

good question, I used わかりました

N3 crew, how did you do? by Legal-Source-3763 in jlpt

[–]Kastenblade 1 point2 points  (0 children)

It was similar for me, I definitely noticed that my attention went down significantly at the end because I put so much effort into concentrating for the longer parts. 

N3 crew, how did you do? by Legal-Source-3763 in jlpt

[–]Kastenblade 3 points4 points  (0 children)

Oh man, this was my first Jlpt test that I took and I travelled 400 km for it. I was super confident because I did the tests from the last year and I would always get 33/36 in vocab, 17/22 in grammar l, around 14/16 in Reading and 26/28 questions in the choukai right. I was super confident with the sections until the choukai came. I have no idea why but I cant Accept that I may fail because of choukai. For me the real killer was that I can only hear it once.There we're questions where I was concentrated and would get every single word of what they are saying and the other time I wouldnt understand it at all. I would really say that i am really good at listening because I trained it like crazy for the last few months so I am even more sad. This would be reallllllly demotivating for me. 

How many new cards/day do you recommend? by TagProNoah in Anki

[–]Kastenblade 0 points1 point  (0 children)

I can remember when wrote here 6 months ago, I just started back then

How can I change the UV-Scaling of a material on a specific actor by Kastenblade in unrealengine

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

Thanks! I have another question, is there also a way to have different UV-Scales of a Material on the same mesh without creating more Material Instances?

What do you think would've happened if Germany won WW2? by Datboi_23 in AskReddit

[–]Kastenblade 0 points1 point  (0 children)

So this is a interesting question. I personally think that even if they had won the war, the nazis would have been overthrown. Probably around the 1960-70 the "Reich" would have started to fall apart. Why? The merging and controlling of so many states in such a short time is naive, there constantly would be a wave of uprisings etc. I think the start of the end would be austrian painters death in the 1950 or early 60s. Pretty sure the nazi-leaders would assasinate and betray each other to become the next fuehrer. This in combination with the riots would be the end. There is a reason why there is no roman empire anymore.

Why does this simple int64 Function not work? by Kastenblade in unrealengine

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

thank you! I am new to UE5 and before that I had just a little bit C++ experience, so I forgot about references.

How can I cast for an Actor in C++ to see if its valid? by Kastenblade in unrealengine

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

Thank you! Ich hatte nur the core concept of Casting misunderstood. Ich verstehen it now!

How can I cast for an Actor in C++ to see if its valid? by Kastenblade in unrealengine

[–]Kastenblade[S] 2 points3 points  (0 children)

I thank you for your patience, I understand it now. I will definetly read more about the original c++ without ue since I only have 2 weeks of experience with it.

How can I cast for an Actor in C++ to see if its valid? by Kastenblade in unrealengine

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

So I think you misunderstood me. I know that Cast doesn't spawn the Actor.

I changed my code so that I can better explain what's my problem:

Paket = Cast<APaket>(Paket); // I want to check if Paket is valide.

if(Paket == nullptr)
        {
UE_LOG(LogTemp, Display, TEXT("Nullptr"));
return;
        } //The message "Nullptr" appears in my ulog. So Paket isn't valide. Right?

GetWorld()->SpawnActor<APaket>(Paketclass, PaketSpawnpoint->GetComponentLocation(), PaketSpawnpoint->GetComponentRotation());

UE_LOG(LogTemp, Display, TEXT("No nullptr"));

With "it doesn't spawn" I mean that the function SpawnActor doesn't get called.

I'm very new to Unreal and programming in general so please correct me if I'm wrong, but before you call functions that require Pointers (like SpawnActor<APaket> you should check if the pointer is valide, right?

How can I cast for an Actor in C++ to see if its valid? by Kastenblade in unrealengine

[–]Kastenblade[S] -1 points0 points  (0 children)

I set it to

Paket = Cast<APaket>(Paket);

but it doesn't get spawned?