联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 游戏(169) 
按平台查找All C#(169) 

[游戏] Game Development

这本书是一个实用的介绍编程2D和3D游戏
Game Development This book is a practical introduction to programming 2D and 3D games, techniques used in programming these games, and how to benefit from these techniques. It illustrates a large number of mechanics used in video games and shows by example how to program these mechanics and combine them to achieve the desired behavior. It illustrates also how to put the player into control and deal with interactions between player and various game elements. (2024-04-20, C#, 10516KB, 下载0次)

http://www.pudn.com/Download/item/id/1713568148297426.html

[游戏] Simple-Driving-Game

我开发了这个项目作为Unity初级编程课程的一部分。资产和其他内容属于Unity课程。在项目的第一个场景中,我们实现了基本的车辆驾驶和变换功能。第二个场景是一个由我编码的飞行游戏,利用Unity课程的资源。
I developed this project as part of the Unity Junior Programming course. The assets and other content belong to the Unity course. In the first scene of the project, we implemented basic vehicle driving and transform functions. The second scene features a flight game coded by me, utilizing assets from the Unity course. (2024-03-10, C#, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1710037105285160.html

[游戏] io_Click_Challenge_An_Object-Oriented_Arcade_Game

这是一个街机游戏,用面向对象编程语言C#编写。游戏的挑战是点击移动的超级三月...,
This is an arcade game, written in Object Oriented Programming Language C#. The challenge of the game is to click on the moving Super Mario GIF. The game has two levels of difficulty (easy and professional), which are related to Mario s moving speed. Moreover, the game keeps the high scorers for each difficulty, can be paused and has different (2023-08-01, C#, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1690888462829499.html

[游戏] a-little-game

一开始在一个杂志上看到的小游戏,初中的时候很喜欢,并且因此学习了编程vb做的第一个程序就是这个小游戏,当时啥都不懂全是if语句。现在知识多了,复现一下,也算一种不忘本吧。
At the beginning, I saw a small game in a magazine. I liked it very much in junior high school, and so the first program I learned to program vb was this small game. At that time, I didn t understand anything but if statements. Now that I have more knowledge, I will not forget my roots. (2020-09-03, C#, 354KB, 下载0次)

http://www.pudn.com/Download/item/id/1687597136848924.html

[游戏] PKLANG麻将游戏》+源代码

这个麻将是我仿照台湾16张游戏,用MFC编写,图片和声音都是从原来游戏COPY 过来的了,里面已经包含全部源代码. 本游戏是玩家和电脑对玩,我做的电脑AI还有一些Bug,不过还是有机会赢你的.
This mahjong is modeled on 16 games in Taiwan, written in MFC, and pictures and sounds are from the original game COPY. Come here, it contains all the source code. This game is played by players and computers, I do computer AI, there are still some Bug, but I still have the chance to win you (2018-04-08, C#, 205KB, 下载2次)

http://www.pudn.com/Download/item/id/1523192303129566.html

[游戏] feiji

C#打飞机游戏的雏形,类似雷电和微信的那种飞机大战游戏,C#游戏源码,采用面向对象编程的概念,不到600行代码, 比较简单易懂,特别适合C#初学者学习游戏开发。本打飞机游戏支持键盘操作,也可以切换成鼠标操作(鼠标操作更加 灵活),
C# to play the game prototype aircraft, similar to the kind of lightning and micro-channel airplane war game, C# game source code, object-oriented programming concepts, less than 600 lines of code, is relatively simple to understand, especially for C# beginners to learn game development. The aircraft hit the game supports keyboard, mouse can also be switched into operation (mouse operation more flexible), (2014-09-29, C#, 523KB, 下载7次)

http://www.pudn.com/Download/item/id/2628841.html

[游戏] Aircraft

C#打飞机游戏的雏形,类似雷电那种飞机大战游戏,C#游戏源码,采用面向对象编程的概念,不到600行代码,比较简单易懂,特别适合C#初学者学习游戏开发。本打飞机游戏支持键盘操作,也可以用鼠标操作,可以接子弹或者生命。下载源码后请重新编译,然后运行bin目录下的Aircraft.exe文件即可
# Juego de aviones prototipo C, similar a la clase de los juegos de guerra relámpago aviones, código C# juego de código, los conceptos de programación orientada a objetos, a menos de 600 líneas de código, es relativamente fácil de entender, sobre todo para los principiantes a aprender el desarrollo C# juego. El juego es compatible con los aviones teclado, también puedes usar el ratón, puede acceder a una bala o la vida. Después de descargar la recompilación del código fuente y ejecutar Aircraft.exe archivo en el directorio bin (2014-04-11, C#, 508KB, 下载9次)

http://www.pudn.com/Download/item/id/2507894.html

[游戏] SimpleGame

游戏控制 W,A,S,D, P unit, pic, audio目录不可缺少 只用研究StillObject.cs Tank.cs GameForm.cs即可编程,非常简单 每一个类继承 LifeObject类 首先研究StillObject.cs 然后研究Tank.cs 其中重要的几点是 UnitID 表示物体对应的图片 放在pic目录下 Behave 每回合系统调用此函数执行物体自身的行为 Show 显示函数 RunInto 当物体撞上其他物体时,系统会调用此函数进行处理 Disppear 当物体消失,可调用此函数从游戏世界中退出 然后研究 GameForm 的 Initial 函数 加入你自己的物体即可 所有物体若要从游戏世界中退出 只需调用其Disappear()函数 举例在 GameForm 的ProcessCmdKey(ref Message msg, Keys keyData)中 flower.Disppear()
Game Controls W, A, S, D, P unit, pic, audio catalog indispensable research StillObject.cs Tank.cs GameForm.cs only to programming, very simple class that inherits LifeObject each class and then study the first study StillObject.cs Tank.cs One of the important points are UnitID represent objects corresponding picture on pic directory Behave per round system calls this function to perform the behavior of the object itself functions RunInto Show Displays when an object hit other objects, the system will call this function processing Disppear when the object disappears, you can call this function to exit from the game world and then the Initial research GameForm function to add your own objects to all objects To exit from the game world simply call it Disappear () function is an example of ProcessCmdKey in GameForm (ref Message msg, Keys keyData) in flower.Disppear () (2013-05-26, C#, 264KB, 下载1次)

http://www.pudn.com/Download/item/id/2259092.html

[游戏] MineClearance

软件名称:挖雷 游戏版 本:1.01编程语言:Visual Studio .NET C# (Beta 2)调试环境:WINDOWS 2000 Professional运行环境:需要 Microsoft .NET Framework SDK 支持使用方法:具体使用方法请在游戏中按 F1 键查看相关的帮助信息。备 注:欢迎各位朋友与我联系!
software name: MineClearance game version: 1.01 progamme language: Visual studio.net C#(beta2) debugging environment: WINDOWS 2000 Professional operation environment:Microsoft .NET Framework SDK using method: please press F1 to check the related help information of detailed method By the way, welcome everybody contacting me. (2005-04-25, C#, 101KB, 下载284次)

http://www.pudn.com/Download/item/id/1114413250970097.html
总计:169