This file contains 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
<!-- inspired by https://stackoverflow.com/questions/36120996/get-all-routes-in-a-vue-router/36128368 --> | |
<template> | |
<div> | |
<span v-for="route in routes" :key="route.name"> | |
<router-link :to="route.path">{{ route.name }}</router-link> | |
</span> | |
</div> | |
</template> | |
<script> |
This file contains 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 UnityEngine; | |
using BansheeGz.BGSpline.Curve; | |
[RequireComponent(typeof(BansheeGz.BGSpline.Curve.BGCurve))] | |
public class Platformer2Point5D_Path : MonoBehaviour { | |
private BGCurve curve; | |
private BGCurveBaseMath math; | |
void Start () { |