File tree Expand file tree Collapse file tree 5 files changed +10
-174
lines changed
docs/source/getting_started Expand file tree Collapse file tree 5 files changed +10
-174
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ Below is the directory structure of manim:
103103 ├── family_ops.py # Process family members
104104 ├── file_ops.py # Process files and directories
105105 ├── images.py # Read image
106- ├── init_config.py # Configuration guide
107106 ├── iterables.py # Functions related to list/dictionary processing
108107 ├── paths.py # Curve path
109108 ├── rate_functions.py # Some defined rate_functions
Original file line number Diff line number Diff line change 44from manimlib import __version__
55from manimlib .config import manim_config
66from manimlib .config import parse_cli
7- import manimlib .utils .init_config
87import manimlib .extract_scene
98from manimlib .window import Window
109
@@ -55,9 +54,6 @@ def main():
5554 args = parse_cli ()
5655 if args .version and args .file is None :
5756 return
58- if args .config :
59- manimlib .utils .init_config .init_customization ()
60- return
6157
6258 run_scenes ()
6359
Original file line number Diff line number Diff line change @@ -147,11 +147,6 @@ def parse_cli():
147147 action = "store_true" ,
148148 help = "Show the output file in finder" ,
149149 )
150- parser .add_argument (
151- "--config" ,
152- action = "store_true" ,
153- help = "Guide for automatic configuration" ,
154- )
155150 parser .add_argument (
156151 "--file_name" ,
157152 help = "Name for the movie or image file" ,
Original file line number Diff line number Diff line change 1+ # This file determines the default configuration for how manim is
2+ # run, including names for directories it will write to, default
3+ # parameters for various classes, style choices, etc. To customize
4+ # your own, create a custom_config.yml file in whatever directory
5+ # you are running manim. For 3blue1brown, for instance, mind is
6+ # here: https://github.com/3b1b/videos/blob/master/custom_config.yml
7+
8+ # Alternatively, you can create it whereever you like, and on running
9+ # manim, pass in `--config_file /path/to/custom/config/file.yml`
10+
111directories :
212 # Set this to true if you want the path to video files
313 # to match the directory structure of the path to the
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments