コード例 #1
0
ファイル: demo_scene.go プロジェクト: yukiisbored/Kaori
// Exit executes when the scene is being changed or the game is closing
func (s *DemoScene) Exit() {
	log.Println("Demo // Freeing Texture")

	// Free the logo texture
	texture.Free("kaori")

	log.Println("Demo // Bye :(")
}
コード例 #2
0
ファイル: tileset.go プロジェクト: yukiisbored/Kaori
// Free free the loaded image texture
func (t *Tileset) Free() {
	texture.Free(t.Name)
}