Skip to content
This repository has been archived by the owner on Jul 16, 2019. It is now read-only.

Downloads

Reputeless edited this page Apr 23, 2017 · 8 revisions

Siv3D Package Installer

Platform Version Last Update System Requirements
Windows ⬇️ August 2016 v2 2016.9.14 Windows 7 SP1 / 8.1 / 10
Visual C++ 2015 Update 3 (※)

1. Install Siv3D

  • Run Siv3D Package Installer

  • Press "Finish", and reboot your computer

2. Create a New Siv3D Project

# include <Siv3D.hpp>

void Main()
{
	const Font font(30);

	while (System::Update())
	{
		font(L"ようこそ、Siv3D の世界へ!").draw();

		Circle(Mouse::Pos(), 50).draw({ 255, 0, 0, 127 });
	}
}

Congrats! You have made your very first Siv3D program. 😆

♻️ How to Uninstall

Siv3D can be uninstalled by "Uninstall" in the Control Panel.

🇯🇵 日本語

About Siv3D

Supports

  1. Basic Concept
  2. Draw a Shape
  3. Draw a Texture
  4. Draw a Text
  5. Formatting
  6. Keyboard Input
  7. Mouse Input
  8. Audio Playback
  9. MIDI Playback
  10. Window and Background
  11. 2D Collision
  12. Random Number
  13. Dialog
  14. Drag and Drop
  15. Application State
  16. Text File
  17. INI, CSV, JSON
  18. Binary File
  19. GUI
  20. Asset Management
  21. Image Processing
  22. Webcam
  23. Audio Recording
  24. Stopwatch
  25. HSV Color
  26. HTTP Client
  27. 3D Rendering
  28. 2D Render States
  29. 3D Render States
  30. Particles
  31. Screen Capture
  32. Publish Your App
  33. Learn More

Reference

表現テクニック集

Human Interface Devices

開発のヒント

管理用 [記事編集ガイドライン](https://github.com/Siv3D/Reference-JP/wiki/記事編集ガイドライン)
Clone this wiki locally