using UnityEngine; namespace ARLocation.MapboxRoutes { public class SignPostEventArgs { public MapboxRoute Route; public Vector3 TargetPos; public Vector3? NextTargetPos; public Vector3? PrevTargetPos; public Vector3 UserPos; public float Distance; public bool IsCurrentTarget; public int StepIndex; public string Instruction { get; internal set; } public string Name { get; internal set; } } /// /// This abstract class should implement all the behaviour to guide the user along the route. /// /// Each "Step" of the route will instantiate an instance of /// `AbstractRouteSignpost` associated with a step/target of the route. /// /// For a reference implementation see the `SignPost` class. /// /// public abstract class AbstractRouteSignpost : MonoBehaviour { /// /// Initialization method. Called when the route is built the `AbstractRouteSignpost` is instantiated. /// public abstract void Init(MapboxRoute route); /// /// Called by `MapboxRoute` in the middle of its `Update` method. If this function returns `false` when the sign post's target /// is the current one, then `MapboxRoute` will set the current target to the next target. /// public abstract bool UpdateSignPost(SignPostEventArgs args); /// /// Called when the the sign post's target becomes the current target. /// public abstract void OnCurrentTarget(SignPostEventArgs args); /// /// Called when the the sign post's target no longer is the current target. /// public abstract void OffCurrentTarget(SignPostEventArgs args); } } PANIC: session(release): write data/sessions/0/6/06dc1dd77d00a7af: no space left on device

PANIC

session(release): write data/sessions/0/6/06dc1dd77d00a7af: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x874858)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x7fe23b)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x7d54d4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x7d53fc)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x7fe392)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x804106)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x8040fd)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x8016a4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x7d54d4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x7d53fc)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x7fe392)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x809f84)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x80b0ec)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x803224)
net/http/server.go:2916 (0x77e1da)
net/http/server.go:1966 (0x779696)
runtime/asm_amd64.s:1571 (0x471060)