3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cocos2d-JS でファイルを読み込む

Posted at

調べてもネット上にはなかったので備忘録
Cocos2d-JS v3.6.1 で確認
json 以外のファイル(CSVなど)を読み込む

cc.loader を使うと良さそう。
CCBoot.js あたりで実装されている。
下記にテキストを配置されているとする

res/hoge.txt

これをテキストとして読み込むには loader.loadTxt 関数を使う

var filename = "res/hoge.txt"
cc.loader.loadTxt(filename, function(obj, str) {
  cc.log(str)
})

とりあえず上手く動かなかったら CCBoot.js を読めば良さそう

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?