首页 > 代码库 > cocos3 python脚本建立类文件
cocos3 python脚本建立类文件
以前看过一本关于精简工作内容的书,要把工作中重复的东西都简化
今天我就来简化cocos3建立.h文件和.cpp文件
ClassName="TestSprite"Type="Sprite"#.h file writefile = open(ClassName+‘.h‘, ‘w‘)str=‘‘‘#pragma once#include "cocos2d.h"USING_NS_CC;class ClassName:public Type{public: virtual bool init(); CREATE_FUNC(ClassName);};‘‘‘str=str.replace("ClassName",ClassName)str=str.replace("Type",Type)file.write(str)file.close()#.cpp file writefile = open(ClassName+‘.cpp‘, ‘w‘)str=‘‘‘#include "ClassName.h"bool ClassName::init(){ if(!Type::init()) { return false; } return true;}‘‘‘str=str.replace("ClassName",ClassName)str=str.replace("Type",Type)file.write(str)file.close()
cocos3 python脚本建立类文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。