- Create repo on GitHub where you'll put your files.
- Use jsDeliver or statically to get your assets.
Here is repo I'm using:
https://github.com/jcubic/static
And links to files look like this:
| // <PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.3.5" /> | |
| public abstract class BaseNotifyPropertyChanged: INotifyPropertyChanged | |
| { | |
| #region Data Binding | |
| public event PropertyChangedEventHandler PropertyChanged; | |
| public virtual void NotifyPropertyChanged([CallerMemberName] string propertyName = null) | |
| => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); | |
| protected bool SetField<TType>(ref TType field, TType value, [CallerMemberName] string propertyName = null) | |
| { |
Here is repo I'm using:
https://github.com/jcubic/static
And links to files look like this:
| class_name FreeLookCamera extends Camera3D | |
| # Modifier keys' speed multiplier | |
| const SHIFT_MULTIPLIER = 2.5 | |
| const ALT_MULTIPLIER = 1.0 / SHIFT_MULTIPLIER | |
| @export_range(0.0, 1.0) var sensitivity: float = 0.25 | |
| # Mouse state | |
| var _mouse_position = Vector2(0.0, 0.0) |