相关文章
The Sandbox 游戏制作教程第 4 章|使用装备制作游戏,触发独特互动
欢迎回到我们的系列,我们将记录 The Sandbox Game Maker 的 “On-Equip”(装备)功能的多种用途。
如果你刚加入 The Sandbox,On-Equip 功能是 “可收集组件”(Collectable Component)中的一个多功能工具&a…
建站知识
2024/12/15 18:37:20
【网络编程】UDP实现网络通信(C语言、Ubuntu实现)
代码实现:分为udpSer.c(服务器端)和udpCli.c(客户端)
//udpSer.c
#include <myhead.h>#define SER_PORT 9999
#define SER_IP "192.168.83.128"int main(int argc, const char *argv[])
{//1、创建用于通信的服务器套接字文件描述符int sfd sock…
建站知识
2024/12/23 14:36:19
C++ CMake FFmpeg配置
SDK下载 github 环境变量配置 cmake_modules/FindFFmpeg.cmake
# This module defines the following variables:
#
# FFmpeg_FOUND - All required components and the core library were found
# FFmpeg_INCLUDE_DIRS - Combined list of all components includ…
建站知识
2024/12/22 11:49:10
unity自动添加头部注释脚本
unity自动添加头部注释脚本,放在Assets目录自动生效 public class ScriptCreateInit : UnityEditor.AssetModificationProcessor
{private static void OnWillCreateAsset(string path){path path.Replace(".meta", "");if (path.EndsWith(&qu…
建站知识
2024/12/21 23:50:58
代码规范 —— Redis 开发规范
优质博文:IT-BLOG-CN
一、开发规范
【1】弱依赖检查与线下确认:Redis必须是弱依赖,即Redis宕机不影响业务。包括超时检查。 【2】是否当存储使用检查:Redis不能作为存储设备来使用,只能作为缓存或状态等场景来使用。…
建站知识
2024/12/17 1:23:41