Skip to content

Better Godot editor,powerful like Hammer editor in Source Engine

License

Notifications You must be signed in to change notification settings

GodotHub/hammer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hammer

Enhance Godot's 3D capabilities, making it as powerful and user-friendly as the Hammer Editor from the Source Engine.

English    中文

Classes

  • Option
    • Keyboard
    • Mouse
    • Video
    • Audio
  • NetWork
    • Multiple
    • TCP
  • Character
    • Player
    • NPC
    • Pose
    • PoseGroup
  • Interact
    • Trigger
    • Action
  • Prop
  • Chapter

Build from Source

- hammer/
- godot-cpp/
- godot-project/
- SConstruct

Write the following content in SConstruct:

import os
import sys
path = "godot-project/hammer/"
env = SConscript("godot-cpp/SConstruct") # type: ignore
env.Append(CPPPATH=["hammer/"])
sources = Glob("hammer/Register.cpp")  # type: ignore
sources.append(Glob("hammer/Character/Character.cpp")) # type: ignore
sources.append(Glob("hammer/Character/Pose.cpp")) # type: ignore
sources.append(Glob("hammer/Character/PoseGroup.cpp")) # type: ignore
if env["platform"] == "macos":
library = env.SharedLibrary(
target = path + "hammer.{}.{}.framework/libgdexample.{}.{}".format(
env["platform"], env["target"], env["platform"], env["target"]
),
source = sources,
)
else:
library = env.SharedLibrary(
target = "godot-project/hammer/hammer{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
source = sources,
)
Default(library)  # type: ignore

Run scons in the project root directory.

About

Better Godot editor,powerful like Hammer editor in Source Engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages