Skip to content

Instantly share code, notes, and snippets.

View NotStonee's full-sized avatar
🎸
Jamming

Stonee NotStonee

🎸
Jamming
  • School
  • US Georgia
  • 02:51 (UTC -04:00)
View GitHub Profile
@NotStonee
NotStonee / cameraFollow
Created June 22, 2023 22:47
unity camera follow script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class cameraFollow : MonoBehaviour
{
public float FollowSpeed = 2f;
public float yOffset =1f;
public Transform target;
@NotStonee
NotStonee / html skeleton template
Last active January 2, 2023 15:52
Skeleton of html copy and paste it into you editor to make coding faster
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="style.css" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>