Skip to content

Work with CRYENGINE objects in an object oriented way

Notifications You must be signed in to change notification settings

csprance/better_cry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Better Cry

Work with CRYENGINE objects in the editor in an object oriented way.

Install

Drag and drop the better_cry folder into Editor\Scripts

Usage

from better_cry import Level
level = Level()
for item in level.selected:
    # set an items position
    item.position = [0,0,0]
    # read its rotation
    print(item.rotation)
    print(item.scale)
    # get the aabb of the item
    print(item.bounding_box)
    # get the width/height/depth x/z/y
    print(item.width)
    print(item.height)
    print(item.depth)

About

Work with CRYENGINE objects in an object oriented way

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages