using System.Collections; using System.Collections.Generic; using UnityEngine; public class DisplaceAll : MonoBehaviour { public GameObject objects1; public GameObject objects2; public GameObject objects3; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } public void displaceAll() { Transform[] children = this.objects1.GetComponentsInChildren(true); Transform[] children2 = this.objects2.GetComponentsInChildren(true); Transform[] children3 = this.objects3.GetComponentsInChildren(true); foreach(Transform ch in children) { if(ch.gameObject.name.Contains("QR") && !ch.gameObject.name.Contains("AA")) ch.position = new Vector3(0.0f, 10000.0f, 0.0f); } foreach(Transform ch in children2) { if(ch.gameObject.name.Contains("QR") && !ch.gameObject.name.Contains("AA")) ch.position = new Vector3(0.0f, 10000.0f, 0.0f); } foreach(Transform ch in children3) { if(ch.gameObject.name.Contains("QR") && !ch.gameObject.name.Contains("AA")) ch.position = new Vector3(0.0f, 10000.0f, 0.0f); } } } PANIC: session(release): write data/sessions/4/7/470a0a8f50187e76: no space left on device

PANIC

session(release): write data/sessions/4/7/470a0a8f50187e76: 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)