码迷,mamicode.com
首页 > 其他好文 > 详细

Cocos Creator学习笔记

时间:2017-09-22 13:08:41      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:加载   texture   script   color   load   component   网络图片   localhost   .class   

1.动态加载图片

cc.Class({
    extends: cc.Component,

    properties: {
        label: {
            default: null,
            type: cc.Label
        },
        logo: {
            default: null,
            type: cc.Sprite
        },
        // defaults, set visually when attaching this script to the Canvas
        text: ‘Hello, World!‘
    },

    // use this for initialization
    onLoad: function () {
        var self = this;
        //加载本地图片能成功
        cc.loader.loadRes("Texture/HelloWorld", cc.SpriteFrame, function (err, spriteFrame) {
            self.logo.spriteFrame = spriteFrame;
        });

        //加载网络图片成功
        var url = "http://localhost:3274/";
        cc.loader.load({url: url, type: ‘png‘}, function(err,img){
            var mylogo  = new cc.SpriteFrame(img); 
            self.logo.spriteFrame = mylogo;
        });
        

    },
    // called every frame
    update: function (dt) {
    },
});

 

Cocos Creator学习笔记

标签:加载   texture   script   color   load   component   网络图片   localhost   .class   

原文地址:http://www.cnblogs.com/zhuawang/p/7574201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!