Skip to content
View FragileDeviations's full-sized avatar
💭
I had a wife, but they took her in the divorce!
💭
I had a wife, but they took her in the divorce!

Highlights

  • Pro

Organizations

@Not-Enough-Photons @WeatherElectric

Block or report FragileDeviations

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
FragileDeviations/README.md

helo wavey

i mainly do stuff with unity

Caution

very dumb

cool stuff

Automatically save the currently open scene in Unity Editor.

A BONELAB media player.

Various shaders for SLZ URP.

other cool stuff

reznor

look at these great method names

[ServerRpc(RequireOwnership = false)]
public void ChallengerExplosionServerRpc()
{
    _willExplode.Value = true;
    ChallengerExplosionClientRpc();
}

[ClientRpc]
public void ChallengerExplosionClientRpc()
{
   StartCoroutine(ChallengerExplosion());
   _exploding = true;
}


private IEnumerator ChallengerExplosion()
{
   yield return new WaitForSeconds(1f);

   _audioSource.PlayOneShot(explodeNoise, 1);
   Utilities.PlayAudibleNoise(_audioSource, explodeNoise, transform.position, 17f, 1, isInElevator);

   yield return new WaitForSeconds(timeBeforeExplosion);

   Utilities.CreateExplosion(transform.position, true, 100, 0f, 6.4f);

   yield return new WaitForSeconds(2f);

   if (IsServer) gameObject.GetComponent<NetworkObject>().Despawn();
}

Pinned Loading

  1. WeatherElectric/UnitySceneAutoSave WeatherElectric/UnitySceneAutoSave Public

    Automatically save the currently open scene in Unity Editor.

    C# 3

  2. WeatherElectric/VoidSpeaker WeatherElectric/VoidSpeaker Public

    A BONELAB media player.

    C#

  3. MabelsShaders MabelsShaders Public

    Various shaders for SLZ URP

    ShaderLab