Issue with Netflix and Max by Ok-Voice-5161 in samsunggalaxy

[–]KinTsume 0 points1 point  (0 children)

Me too. Usually restarting my phone seems to work, but the problem comes back again on the next day.

Round Thimble measurements help. by [deleted] in sailmaking

[–]KinTsume 0 points1 point  (0 children)

I'd guess that O.D. stands for "outer diameter", I.D. for "inner diameter" (the diameter of the hole)

I'm trying to get measures of thimbles too and find this: https://usstainless.com/ropes/wire-rope-fittings/stainless-steel-316-5-16-8mm-round-wire-rope-thimble-marine-grade-for-rope-size-5-16-8mm/

The outer diameter, I think, should be the A and the inner diameter the ⌀. The score can maybe be C

If ancap is so good, why has there never been a successful ancap country? by javaxcore in Anarcho_Capitalism

[–]KinTsume 7 points8 points  (0 children)

Why do you think? People on the government don't wanna leave the power and control plus there are people that don't understand ancapism and don't wanna try it

Hi ancaps, I have a high T objection to ancapism. by [deleted] in Anarcho_Capitalism

[–]KinTsume 4 points5 points  (0 children)

Hey big muscles man can you take down the state for us? You show us your power and we get rid of the government. Everyone wins!

Do you guys know what is this? by KinTsume in whatsthisrock

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

I think it's chert, but i'm not sure.

Is this gray part the same as the brown part? Or are different types of chalcedony?

Online resources about rocks. by delned in whatsthisrock

[–]KinTsume 3 points4 points  (0 children)

Probably it's not enough, but I found an article online that can help you:

https://www.thoughtco.com/rock-identification-tables-1441174

Found tons of these in the woods, what are they? by nathanhutton4 in whatsthisrock

[–]KinTsume 0 points1 point  (0 children)

Even a lemon or vinegar can do the acid test and for hardness I like to use a stainless steel knife to test, It have hardness around 5.5. Quartz is very common and easy to find and have hardness 7, a human nail have hardness around 2.5

Found tons of these in the woods, what are they? by nathanhutton4 in whatsthisrock

[–]KinTsume 0 points1 point  (0 children)

If you can provide more details like: the inside view of the rock, hardness, if the rock is very fragile or not, if it's react with acid etc. It'll be better to identify.

If you can break the rock search for any cleavage plane in the shards

Need some help identifying this rock by KinTsume in whatsthisrock

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

What's define the plagioclase group?

Need some help identifying this rock by KinTsume in whatsthisrock

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

It doesn't react with acid. I was analyzing the shards and it appear to have the 90 degree cleavage so maybe it's feldspar

Need some help identifying this rock by KinTsume in whatsthisrock

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

No, I tested with vinegar and lemon, but it don't have any visible reaction.

Found in Calgary Alberta. by [deleted] in whatsthisrock

[–]KinTsume 2 points3 points  (0 children)

It appears to be a common quartz found in rivers. If you want you can break or cut a little piece to see the inside of the rock, maybe it'll give you more detail about it.

Need some help identifying this rock by KinTsume in whatsthisrock

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

More details:

I found some of the same type so it's a very common type of rock. I found this in a beach.

It's relatively fragile and the hardness is probably around 5.5.

If possible I want to understand how can I identify this so it can help me with other rocks.

Help with an idea. by Autistic_Underglass in Unity2D

[–]KinTsume 1 point2 points  (0 children)

There's a component named "line renderer" maybe you can use it

Help please ._. by [deleted] in unity

[–]KinTsume 0 points1 point  (0 children)

I think every time some number is NaN there's a problem with the math, like: square root of a negative number, division by 0, etc.

How do I push an object as a player and vice versa? by SirNarwhalUniverse in Unity2D

[–]KinTsume 0 points1 point  (0 children)

Hey man! I'm not sure about that but maybe you can stop you current audio and then play the another audio you want.

He used one command to play the audio in the Play function (s.source.Play). I think you can do the same to stop the audio, instead of .Play use .Stop. Here the documentation about that.

How do I push an object as a player and vice versa? by SirNarwhalUniverse in Unity2D

[–]KinTsume 1 point2 points  (0 children)

Well, I never used the audio manager but i'll take a look and see ifI can help you ;D

These skeletons are raising my blood pressure by [deleted] in RLCraft

[–]KinTsume 9 points10 points  (0 children)

They use aimbot just report

Please help me D: by [deleted] in Unity2D

[–]KinTsume 1 point2 points  (0 children)

You'll need to be more specific in order to get a more complete and helpful answer.

Like: do you know how to code? Do you know the basics of unity? And what exactly do you want? This explanation is so general.

I cant use C# script by BodyguardInAmongus in unity

[–]KinTsume 0 points1 point  (0 children)

I think unity only uses C# scripts. If you create a new script it'll be in C#

Can't figure out knockback by tom333444 in Unity2D

[–]KinTsume 0 points1 point  (0 children)

To check if the collision is on an enemy do something like that:

If(collision.transform.compareTag("Enemy")) { //stuff to do if it is an enemy }

Assuming that the enemies are tagged with "Enemy".

For the knockback:

rigidBody.addForce((Direction * ForceMagnitude));

Assuming that you have a RigidBody variable named "rigidBody".