eclipse注释字体大小设置
eclipse注释字体大小设置
Window--> Preferences --> General --> Appearance --> Colors and Fonts--> Basic --> Text Font --> Edit --> 字体,将字体改为“Courier New” 即可实现我们想要的效果,让注释字体大于代码字体。
eclipse注释字体大小设置
Window--> Preferences --> General --> Appearance --> Colors and Fonts--> Basic --> Text Font --> Edit --> 字体,将字体改为“Courier New” 即可实现我们想要的效果,让注释字体大于代码字体。
在线js,html编译测试
https://www.w3school.com.cn/tiy/t.asp?f=jseg_splice
用Eclipse IDE开发的通用游戏服务器框架。
https://gitee.com/xiaoe/noark3
斗地主java服务器
https://github.com/zhanghuanhao/HHGameHall
java游戏服务器框架
https://github.com/zhangqi-ulua/ServerFramework
当你不满现状又无力改变时,你该怎么办?
在IDE下即可自动补全 Swoole 相关的函数composer require easyswoole/swoole-ide-helper
win10下优雅的调试swoole方式:安装VirtualBox和Vagrant
Vagrant命令
vagrant.exe box add centos7.6 D:/phps/box/vagrant-centos-7.6.box
vagrant.exe init centos7.6
vagrant.exe up
vagrant ssh
sudo su -
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
composer self-update
composer update
我们的宗旨是希望把敌人搞得少少的,把朋友弄得多多的。良性竞争必不可少,一枝独秀不是春,万紫千红春满园。
pm2命令可以用在nodejs,也可以用在php的swoole上pm2 start swoole.php --name ddd
日志在/root/.pm2/logs
下面,还是pm2用着舒服哈。
乾(☰)、坤(☷)、
震(☳)、巽(☴)、
坎(☵)、离(☲)、
艮(☶)、兑(☱)、
2020年4月,百度首页出现广告了,去除办法:把浏览器百度网站的Cookies清除掉。在浏览百度首页,还原到没广告的页面了。
creator3D文档:https://docs.cocos.com/creator3d/manual/zh/
roblox引擎:https://robloxdev.cn 这个看起来也不错呢。
https://developer.roblox.com/zh-cn
cc.loader.loadRes(burl + "", cc.JsonAsset, (error: Error, res: cc.JsonAsset) => {
var bodyData = res.json;
});
var a = new cc.Rect(0, 0, 10, 10);
var b = new cc.Vec2(0, 5);
a.contains(b);// true
// 全局坐标转换为局部坐标
let npos = this.anode.convertToNodeSpaceAR(gpos);
// 局部坐标转换为全局坐标,前面要为anode的父节点
let gpos = this.aParentNode.convertToWorldSpaceAR(this.anode.position);