DeleteManager.cs 598 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class DeleteManager : MonoBehaviour
  5. {
  6. private GameObject gameObject;
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. gameObject = null;
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. public void SetObjectToDelete(GameObject toDelete)
  17. {
  18. this.gameObject = toDelete;
  19. }
  20. public void DeleteGameObject()
  21. {
  22. if(gameObject != null)
  23. {
  24. Destroy(this.gameObject);
  25. }
  26. }
  27. }
PANIC: session(release): write data/sessions/a/a/aa9d2714bae77783: no space left on device

PANIC

session(release): write data/sessions/a/a/aa9d2714bae77783: 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)