This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Expose Ollama models to LM Studio by symlinking its model files. | |
NOTE: On Windows, you need to run this script with administrator privileges. | |
""" | |
import json | |
import os | |
from pathlib import Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
public class TreeGenerator : MonoBehaviour | |
{ | |
[SerializeField] private bool createOnStart; | |
[SerializeField] private List<GameObject> trees; | |
[SerializeField] private float minSize,maxSize; | |
private void Start() | |
{ | |
if (!createOnStart) return; |